docs: use docker compose build before docker compose up

This is useful if there is a change in Dockerfile.ipinfo-geoipupdate.
This commit is contained in:
Vincent Bernat
2024-06-29 08:43:20 +02:00
parent bf8c4856e4
commit 9cc329df16
2 changed files with 6 additions and 4 deletions

View File

@@ -21,6 +21,7 @@ install the `docker-compose-v2` package. On macOS, you can use the
# mkdir akvorado
# cd akvorado
# curl -sL https://github.com/akvorado/akvorado/releases/latest/download/docker-compose-quickstart.tar.gz | tar zxvf -
# docker compose build
# docker compose up -d
```

View File

@@ -17,10 +17,10 @@ You can get *Akvorado* as a
# docker run --rm ghcr.io/akvorado/akvorado:latest help
```
Check the `docker-compose.yml` file for an example on how to deploy *Akvorado*
using containers. If you want to use `docker compose`, have a look at the [quick
start procedure](00-intro.md#quick-start). This documentation assumes you are
running the `docker compose` setup.
Check the `docker/docker-compose.yml` file for an example on how to deploy
*Akvorado* using containers. If you want to use `docker compose`, have a look at
the [quick start procedure](00-intro.md#quick-start). This documentation assumes
you are running the `docker compose` setup.
If you want to compile the Docker image yourself, you can use `make docker`.
@@ -102,6 +102,7 @@ When using `docker compose`, use the following commands to fetch an updated
# curl -sL https://github.com/akvorado/akvorado/releases/latest/download/docker-compose-quickstart.tar.gz | tar zxvf - docker-compose.yml
# docker compose pull
# docker compose stop akvorado-orchestrator
# docker compose build
# docker compose up -d
```