could be desired to start the containers in the background with -d switch

Oliver Völker 2024-05-07 15:39:36 +02:00
parent 22f599e464
commit 7babd0640d

@ -38,7 +38,7 @@ Now it's time to start all the containers again.
This will also migrate the NetBox database schema automatically.
```bash
docker compose up
docker compose up -d
```
Once NetBox has started, you should be ready to go.
@ -87,5 +87,5 @@ docker compose up -d postgres
gunzip -c db_dump.sql.gz | docker compose exec -T postgres sh -c 'psql -U $POSTGRES_USER $POSTGRES_DB'
# Start all other containers
docker compose up
docker compose up -d
```