2 lines
243 B
Plaintext
2 lines
243 B
Plaintext
To build an image "toto" with the version "0.1": docker build . -t toto:0.1
|
|
To run ab image to container with volume : docker run -v C:\toto\logs\config:/app/Front/config -v C:\toto\logs\db:/app/API/Data -p 5080:80/tcp --name Test -it toto:0.1 |