Merge pull request #92 from infosiftr/dot

"."
This commit is contained in:
Tianon Gravi 2014-11-05 15:39:00 -07:00
commit ad62f6447d
6 changed files with 6 additions and 6 deletions

View File

@ -48,7 +48,7 @@ software such as Apache.
You can then build and run the Docker image:
docker build -t my-nodejs-app
docker build -t my-nodejs-app .
docker run -it --rm --name my-running-app my-nodejs-app
### Notes

View File

@ -30,7 +30,7 @@ software such as Apache.
You can then build and run the Docker image:
docker build -t my-nodejs-app
docker build -t my-nodejs-app .
docker run -it --rm --name my-running-app my-nodejs-app
### Notes

View File

@ -32,7 +32,7 @@ including C, shell scripting (sh), AWK, and sed.
Then, build and run the Docker image:
docker build -t my-perl-app
docker build -t my-perl-app .
docker run -it --rm --name my-running-app my-perl-app
## Run a single Perl script

View File

@ -19,7 +19,7 @@ including C, shell scripting (sh), AWK, and sed.
Then, build and run the Docker image:
docker build -t my-perl-app
docker build -t my-perl-app .
docker run -it --rm --name my-running-app my-perl-app
## Run a single Perl script

View File

@ -47,7 +47,7 @@ to bootstrap most applications. The build will `COPY` a `requirements.txt` file,
You can then build and run the Docker image:
docker build -t my-python-app
docker build -t my-python-app .
docker run -it --rm --name my-running-app my-python-app
## Run a single Python script

View File

@ -32,7 +32,7 @@ to bootstrap most applications. The build will `COPY` a `requirements.txt` file,
You can then build and run the Docker image:
docker build -t my-python-app
docker build -t my-python-app .
docker run -it --rm --name my-running-app my-python-app
## Run a single Python script