til/Development/docker.md

43 lines
1.3 KiB
Markdown

# Docker
| Distribution | Package |
| ------------ | ----------------------------------------------------- |
| Archlinux | `docker` |
| Ubuntu | [See](https://docs.docker.com/engine/install/ubuntu/) |
On Archlinux, enable and start service:
```sh
systemctl enable --now docker.service
```
Add your user to `docker` group:
```sh
sudo usermod -aG docker $USER
```
Delete all images, containers, volumes, and networks that are not associated with a container (dangling):
```sh
docker system prune
```
Read [docker run](https://docs.docker.com/engine/reference/commandline/run/).
| option | example | explain |
| -------- | --------------- | ----------------------------------------- |
| `-i` | | Keep STDIN open even if not attached |
| `--name` | | |
| `-p` | `-p 8080:80` | Publish container port : host port |
| `--rm` | | |
| `-t` | | Allocate a pseudo-TTY |
| `-v` | `-v ~/abc:/abc` | Bind host directory : container directory |
Example run `ubuntu` image:
```sh
docker run --rm -it ubuntu
```