docker:basic_usage_of_docker
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
docker:basic_usage_of_docker [2020/05/13 09:38] – peter | docker:basic_usage_of_docker [2020/07/15 09:30] (current) – external edit 127.0.0.1 | ||
---|---|---|---|
Line 18: | Line 18: | ||
docker pull ubuntu | docker pull ubuntu | ||
</ | </ | ||
- | |||
The docker pull imagename command will download an image to your server from docker registry/ | The docker pull imagename command will download an image to your server from docker registry/ | ||
+ | |||
+ | ---- | ||
Now you can see all downloaded images by using the command: | Now you can see all downloaded images by using the command: | ||
Line 30: | Line 31: | ||
The Ubuntu image was downloaded from DockerHub/ | The Ubuntu image was downloaded from DockerHub/ | ||
+ | |||
+ | ---- | ||
To create the container, you can use docker create or docker run. | To create the container, you can use docker create or docker run. | ||
Line 36: | Line 39: | ||
docker create ubuntu: | docker create ubuntu: | ||
</ | </ | ||
- | |||
**docker create** command will create a new container but not start it. So now you can use run command: | **docker create** command will create a new container but not start it. So now you can use run command: | ||
Line 44: | Line 46: | ||
</ | </ | ||
- | This command will create and run a container based in ubuntu | + | This command will create and run a container based on an Ubuntu |
Line 54: | Line 56: | ||
/bin/sh -c "while true; do echo hello world; sleep 1; done" this is bash script to echo "hello word" forever. | /bin/sh -c "while true; do echo hello world; sleep 1; done" this is bash script to echo "hello word" forever. | ||
</ | </ | ||
+ | |||
+ | ---- | ||
Now you can see the container running in the background by using command: | Now you can see the container running in the background by using command: | ||
Line 60: | Line 64: | ||
docker ps | docker ps | ||
</ | </ | ||
+ | |||
+ | ---- | ||
or if you want to see the logs result from that bash command you can use the command: | or if you want to see the logs result from that bash command you can use the command: | ||
Line 67: | Line 73: | ||
</ | </ | ||
+ | ---- | ||
How can I access the shell of container that runs in the background mode? This command will connect you to the shell of the container: | How can I access the shell of container that runs in the background mode? This command will connect you to the shell of the container: | ||
Line 73: | Line 80: | ||
docker exec -i -t NAMES/ | docker exec -i -t NAMES/ | ||
</ | </ | ||
- | |||
You can see the hostname and the container ID are equal, this means that you are inside of the container shell. When you type `exit` on that shell you will leave that shell but the container is still running. | You can see the hostname and the container ID are equal, this means that you are inside of the container shell. When you type `exit` on that shell you will leave that shell but the container is still running. | ||
+ | |||
+ | ---- | ||
Another command that you will use often is: | Another command that you will use often is: | ||
Line 88: | Line 96: | ||
docker start NAME/ | docker start NAME/ | ||
</ | </ | ||
+ | |||
+ | ---- | ||
If you like to remove the container, stop it first and then remove it with the command: | If you like to remove the container, stop it first and then remove it with the command: | ||
Line 94: | Line 104: | ||
docker rm NAME/ | docker rm NAME/ | ||
</ | </ | ||
+ | |||
+ | ---- | ||
This is just a short introduction on the installation and basic usage of Docker on Ubuntu, you can find the detailed Docker documentation page here. | This is just a short introduction on the installation and basic usage of Docker on Ubuntu, you can find the detailed Docker documentation page here. |
docker/basic_usage_of_docker.1589362720.txt.gz · Last modified: 2020/07/15 09:30 (external edit)