Aggiornato README.md
This commit is contained in:
parent
8c41b376bd
commit
c9b5d20abe
19
README.md
19
README.md
|
@ -5,26 +5,36 @@ Starting from this example, you can first create an installable package via pip3
|
||||||
The package declares the sortapp command as entrypoint.
|
The package declares the sortapp command as entrypoint.
|
||||||
So once the package is installed you can use this command at command line to run the example:
|
So once the package is installed you can use this command at command line to run the example:
|
||||||
|
|
||||||
- sortapp <token> <file-item-id> <temp-dir-item-id>
|
```
|
||||||
|
sortapp <token> <file-item-id> <temp-dir-item-id>
|
||||||
|
```
|
||||||
|
|
||||||
The image created in this way can be executed in a container with the following command:
|
The image created in this way can be executed in a container with the following command:
|
||||||
|
|
||||||
- docker run -i -t --rm --name sortapp-cont sortapp sortapp <token> <file-item-id> <temp-dir-item-id>
|
```
|
||||||
|
docker run -i -t --rm --name sortapp-cont sortapp sortapp <token> <file-item-id> <temp-dir-item-id>
|
||||||
|
```
|
||||||
|
|
||||||
## Useful Commands
|
## Useful Commands
|
||||||
|
|
||||||
### Create Distribution Package
|
### Create Distribution Package
|
||||||
|
```
|
||||||
python3 setup.py sdist --formats=gztar
|
python3 setup.py sdist --formats=gztar
|
||||||
|
```
|
||||||
### Create Docker Image
|
### Create Docker Image
|
||||||
|
```
|
||||||
docker build -t sortapp .
|
docker build -t sortapp .
|
||||||
|
```
|
||||||
|
|
||||||
### Save Docker Image in file
|
### Save Docker Image in file
|
||||||
|
```
|
||||||
docker save sortapp | gzip > sortapp.tar.gz
|
docker save sortapp | gzip > sortapp.tar.gz
|
||||||
|
```
|
||||||
|
|
||||||
### Publish Docker Image on DockerHub
|
### Publish Docker Image on DockerHub
|
||||||
Name your local images using:
|
Name your local images using:
|
||||||
|
|
||||||
|
```
|
||||||
By re-tagging an existing local image:
|
By re-tagging an existing local image:
|
||||||
|
|
||||||
- docker tag sortapp <hub-user>/<repo-name>[:<tag>]
|
- docker tag sortapp <hub-user>/<repo-name>[:<tag>]
|
||||||
|
@ -40,3 +50,4 @@ Now you can push this repository to the registry designated by its name or tag:
|
||||||
Then logout for security:
|
Then logout for security:
|
||||||
|
|
||||||
- docker logout
|
- docker logout
|
||||||
|
```
|
Loading…
Reference in New Issue