Run jobs in a Docker
0) Brief introduction
# A Quick Start in Terminal after you installed Docker software in your computer:
docker pull ubuntu # download an image of ubuntu, you can also specify a version tag (ubuntu is equivalent to ubuntu:latest)
docker run -i -t ubuntu # run (create) a container of ubuntu, same as docker run -i -t ubuntu /bin/bash
exit # exit your container
1) Install and Use Docker in Mac
1.0) Install Docker
1.1) Load an image
1.2) Run a container from an image
1.3) Use and exit the container

2) Install and Use Docker in Windows
2.0) Install Docker
2.0.a) Update your Windows
2.0.b) Download and install Docker
2.0.c) Setup Windows Subsystem for Linux (WSL)
2.1) Restart

2.2) Check the installation

2.3) Load a Docker Image

2.4) Run a container from an image

2.6) Run and exit the container

3) How to maintain a container
3.1) Check if Docker is installed
3.2) Check how many containers are running
3.3) Remove a container
3.4) Clean files
4) Advanced Settings



5) References
Last updated
Was this helpful?
