{% include nav.html %}
- Docker is supported on the following platforms
- Linux
- MacOS
- Windows 10
- Docker Install
Most of your interaction with Docker will take place from the command line. The terminal/shell that you use for command line access will alter the syntax of your docker commands.
For simplicity, this tutorial will document the syntax needed for each of the following shell environments.
-
- If you run GitHub for windows, there is an option to enable the "Git Bash" shell. (Screenshot: git-bash options)
- This shell environment was chosen because it is the most similar to the Bash shell environment.
The docker run command starts a docker container using a published or compiled docker image.
- The --rm option will clean up container resources when the process completes.
Published images can be discovered on Docker Hub.
The following command will list the root directory (ls -l
) for the ubuntu linux image.
docker run --rm ubuntu ls /
The Git Bash Shell attempts to convert a starting slash to a windows host directory. Use a double slash if you are running in Git Bash.
docker run --rm ubuntu ls //
The following command will run a bash shell on ubnuntu. This requires terminal input/output; therefore the command is run with the -it option.
docker run -it --rm ubuntu /bin/bash
The Git Bash Shell attempts to convert a starting slash to a windows host directory. Use a double slash if you are running in Git Bash.
In order to interact with the terminal from Git-Bash, you must prefix the command with winpty
.
winpty docker run -it --rm ubuntu //bin/bash
The docker run command starts a docker container using a specific image.
- The -d option detaches the running process from the current window.
- The --name option assigns a name to the running container (making subsequent commands easier to perform)
The following command will start a tomcat server within docker.
docker run --name myContainer -d tomcat
$ docker ps -a
Note the name of the container that is running.
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES
de1eac490eae tomcat "catalina.sh run" 9 minutes ago Up 9 minutes 8080/tcp myContainer
The docker exec command runs a command within an running container.
docker exec myContainer pwd
docker stop myContainer
If you run docker ps -a
you will see that the container is stopped.
docker rm myContainer
This tutorial will focus on the syntax for Bash on Linux/MacOS and Git-Bash on Windows 10.
It is possible to run docker using an alternative shell. Some commands will require a variation in the syntax if you are using an alternate shell.
Set FOO to BAR
- MacOS or bash:
export FOO=BAR
- Windows CMD:
set FOO=BAR
- Windows Powershell: ???
Set DSPACE_SRC to current directory
- MacOS or bash:
export DSPACE_SRC=$(pwd)
- Windows CMD:
set DSPACE_SRC=%cd%
- Windows Powershell: ???