Remove compose down from update instructions (#443)

docker compose down is not needed, and running it before pulling updated
images causes longer service downtime than required.

Simply running `docker compose up -d` after `docker compose pull` will
recreate all containers that changed (by either image version or other
settings in the compose file).
This commit is contained in:
Odd Stråbø
2024-09-13 06:14:52 +02:00
committed by GitHub
parent 99d0b57e0e
commit bf0a6bad5c

View File

@@ -42,7 +42,7 @@ You can optionally configure the container using environment variables — see t
### Update Docker Compose container
```bash
$ docker-compose down && docker-compose pull && docker-compose up -d
$ docker-compose pull && docker-compose up -d
```
## Launch container using docker command