Last active
November 12, 2019 06:37
-
-
Save a-m-dev/6b1b3b6e444ff1ac10b9e5cf322a5f98 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
docker build -t test_04 -f Dockerfile-CSR . | |
docker build --network host . | |
docker run -p 9000:80 --rm test_04 | |
// -d for detached mode ( run in background ) | |
docker run -d -p 9000:80 --rm test_04 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment