docker_practice/install/ubuntu.md

163 lines
5.2 KiB
Go
Raw Permalink Normal View History

# Ubuntu Docker
2014-09-11 14:52:28 +00:00
> Docker APT 使 apt Docker.
##
2016-02-04 06:29:05 +00:00
###
2016-06-12 10:22:47 +00:00
Docker [Ubuntu](https://ubuntu.com/server) 操作系统:
2017-09-04 03:18:14 +00:00
* Ubuntu Hirsute 21.04
* Ubuntu Groovy 20.10
* Ubuntu Focal 20.04 (LTS)
* Ubuntu Bionic 18.04 (LTS)
2016-02-04 06:29:05 +00:00
Docker 64 x86 ARM Ubuntu LTSLong-Term-Support 5 使 LTS
###
2016-02-04 06:29:05 +00:00
2017-09-04 03:18:14 +00:00
Docker `docker` `docker-engine`使
```bash
$ sudo apt-get remove docker \
docker-engine \
docker.io
```
## 使 APT
2018-03-08 00:23:35 +00:00
`apt` 使 HTTPS 使 HTTPS CA
```bash
2017-09-04 03:18:14 +00:00
$ sudo apt-get update
2017-09-04 03:18:14 +00:00
$ sudo apt-get install \
apt-transport-https \
ca-certificates \
curl \
gnupg \
lsb-release
2016-02-04 06:29:05 +00:00
```
2017-12-08 16:12:02 +00:00
使
2018-03-08 00:23:35 +00:00
`GPG`
2016-02-04 06:29:05 +00:00
```bash
$ curl -fsSL https://mirrors.aliyun.com/docker-ce/linux/ubuntu/gpg | sudo gpg --dearmor -o /usr/share/keyrings/docker-archive-keyring.gpg
2017-12-08 16:12:02 +00:00
#
# $ curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo gpg --dearmor -o /usr/share/keyrings/docker-archive-keyring.gpg
2016-02-04 06:29:05 +00:00
```
`sources.list` Docker
```bash
$ echo \
"deb [arch=amd64 signed-by=/usr/share/keyrings/docker-archive-keyring.gpg] https://mirrors.aliyun.com/docker-ce/linux/ubuntu \
$(lsb_release -cs) stable" | sudo tee /etc/apt/sources.list.d/docker.list > /dev/null
2017-12-08 16:12:02 +00:00
#
# $ echo \
# "deb [arch=amd64 signed-by=/usr/share/keyrings/docker-archive-keyring.gpg] https://download.docker.com/linux/ubuntu \
# $(lsb_release -cs) stable" | sudo tee /etc/apt/sources.list.d/docker.list > /dev/null
```
> Docker APT Docker stable test
2017-12-08 16:12:02 +00:00
### Docker
2017-09-04 03:18:14 +00:00
apt `docker-ce`
```bash
2016-02-04 06:29:05 +00:00
$ sudo apt-get update
$ sudo apt-get install docker-ce docker-ce-cli containerd.io
```
2016-04-17 12:10:47 +00:00
## 使
Docker 便Ubuntu 使 `--mirror` 使
> Docker, test.docker.com
```bash
# $ curl -fsSL test.docker.com -o get-docker.sh
2017-09-04 03:18:14 +00:00
$ curl -fsSL get.docker.com -o get-docker.sh
$ sudo sh get-docker.sh --mirror Aliyun
# $ sudo sh get-docker.sh --mirror AzureChinaCloud
2016-04-17 12:10:47 +00:00
```
Docker (stable)
## Docker
```bash
2017-09-04 03:18:14 +00:00
$ sudo systemctl enable docker
$ sudo systemctl start docker
2016-04-17 12:10:47 +00:00
```
## docker
2016-04-17 12:10:47 +00:00
`docker` 使 [Unix socket](https://en.wikipedia.org/wiki/Unix_domain_socket) 与 Docker 引擎通讯。而只有 `root` 用户和 `docker` 组的用户才可以访问 Docker 引擎的 Unix socket。出于安全考虑一般 Linux 系统上不会直接使用 `root` 用户。因此,更好地做法是将需要使用 `docker` 的用户加入 `docker` 用户组。
`docker`
```bash
$ sudo groupadd docker
2016-04-17 12:10:47 +00:00
```
`docker`
```bash
$ sudo usermod -aG docker $USER
2016-04-17 12:10:47 +00:00
```
退
## Docker
```bash
$ docker run --rm hello-world
Unable to find image 'hello-world:latest' locally
latest: Pulling from library/hello-world
b8dfde127a29: Pull complete
Digest: sha256:308866a43596e83578c7dfa15e27a73011bdd402185a84c5cd7f32a88b501a24
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:
1. The Docker client contacted the Docker daemon.
2. The Docker daemon pulled the "hello-world" image from the Docker Hub.
(amd64)
3. The Docker daemon created a new container from that image which runs the
executable that produces the output you are currently reading.
4. The Docker daemon streamed that output to the Docker client, which sent it
to your terminal.
To try something more ambitious, you can run an Ubuntu container with:
$ docker run -it ubuntu bash
Share images, automate workflows, and more with a free Docker ID:
2018-10-21 01:51:36 +00:00
https://hub.docker.com/
For more examples and ideas, visit:
2018-10-21 01:51:36 +00:00
https://docs.docker.com/get-started/
```
##
2017-09-04 03:18:14 +00:00
2019-01-06 02:00:38 +00:00
使 Docker Docker [](mirror.md)
2017-09-04 03:18:14 +00:00
##
2016-04-17 13:08:21 +00:00
2018-10-21 01:51:36 +00:00
* [Docker Ubuntu ](https://docs.docker.com/install/linux/docker-ce/ubuntu/)