docker compose
parent
12e31f7bea
commit
cad5eb4a3d
|
@ -39,3 +39,26 @@ Docker run options:
|
||||||
| `--rm` | | Remove container when exit |
|
| `--rm` | | Remove container when exit |
|
||||||
| `--tty`, `-t` | | Allocate a pseudo-TTY |
|
| `--tty`, `-t` | | Allocate a pseudo-TTY |
|
||||||
| `--volume`, `-v` | `-v "$(pwd)"/data:/data` | Bind host directory:container directory |
|
| `--volume`, `-v` | `-v "$(pwd)"/data:/data` | Bind host directory:container directory |
|
||||||
|
|
||||||
|
## Docker Compose
|
||||||
|
|
||||||
|
Update images:
|
||||||
|
|
||||||
|
```sh
|
||||||
|
docker-compose pull
|
||||||
|
```
|
||||||
|
|
||||||
|
Start:
|
||||||
|
|
||||||
|
```sh
|
||||||
|
docker-compose up
|
||||||
|
|
||||||
|
# Detach
|
||||||
|
docker-compose up -d
|
||||||
|
```
|
||||||
|
|
||||||
|
Stops:
|
||||||
|
|
||||||
|
```sh
|
||||||
|
docker-compose down
|
||||||
|
```
|
||||||
|
|
Loading…
Reference in New Issue