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
FROM ubuntu:20.04 | |
RUN apt update | |
RUN apt install -y tzdata |
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.service - Docker Application Container Engine | |
Loaded: loaded (/lib/systemd/system/docker.service; enabled; vendor preset: enabled) | |
Active: active (running) since Sun 2020-05-03 10:07:04 UTC; 58s ago | |
TriggeredBy: ● docker.socket | |
Docs: https://docs.docker.com | |
Main PID: 4132 (dockerd) | |
Tasks: 8 | |
Memory: 39.2M | |
CGroup: /system.slice/docker.service | |
└─4132 /usr/bin/dockerd -H fd:// --containerd=/run/containerd/containerd.sock |
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-ce: | |
Installed: (none) | |
Candidate: 5:19.03.8~3-0~ubuntu-eoan | |
Version table: | |
5:19.03.8~3-0~ubuntu-eoan 500 | |
500 https://download.docker.com/linux/ubuntu eoan/stable amd64 Packages | |
5:19.03.7~3-0~ubuntu-eoan 500 | |
500 https://download.docker.com/linux/ubuntu eoan/stable amd64 Packages | |
5:19.03.6~3-0~ubuntu-eoan 500 | |
500 https://download.docker.com/linux/ubuntu eoan/stable amd64 Packages |
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
sudo bash -c 'echo "deb [arch=amd64] https://download.docker.com/linux/ubuntu eoan stable" > /etc/apt/sources.list.d/docker-ce.list' |
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
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add - |
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
Unable to find image 'hello-world:latest' locally | |
latest: Pulling from library/hello-world | |
1b930d010525: Pull complete | |
Digest: sha256:4fe721ccc2e8dc7362278a29dc660d833570ec2682f4e4194f4ee23e415e1064 | |
Status: Downloaded newer image for hello-world:latest | |
Hello from Docker! | |
This message shows that your installation appears to be working correctly. | |
To generate this message, Docker took the following steps: |
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.service - Docker Application Container Engine | |
Loaded: loaded (/lib/systemd/system/docker.service; enabled; vendor preset: enabled) | |
Active: active (running) since Wed 2019-12-25 16:16:50 UTC; 3min 26s ago | |
Docs: https://docs.docker.com | |
Main PID: 3890 (dockerd) | |
Tasks: 10 | |
Memory: 39.2M | |
CGroup: /system.slice/docker.service | |
└─3890 /usr/bin/dockerd -H fd:// --containerd=/run/containerd/containerd.sock |
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-ce: | |
Installed: (none) | |
Candidate: 5:19.03.3~3-0~ubuntu-disco | |
Version table: | |
5:19.03.3~3-0~ubuntu-disco 500 | |
500 https://download.docker.com/linux/ubuntu disco/stable amd64 Packages | |
5:19.03.2~3-0~ubuntu-disco 500 | |
500 https://download.docker.com/linux/ubuntu disco/stable amd64 Packages | |
5:19.03.1~3-0~ubuntu-disco 500 | |
500 https://download.docker.com/linux/ubuntu disco/stable amd64 Packages |
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
sudo bash -c 'echo "deb [arch=amd64] https://download.docker.com/linux/ubuntu disco stable" > /etc/apt/sources.list.d/docker-ce.list' |
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
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add - |