netbox-docker/docker-compose.yml

100 lines
2.6 KiB
YAML
Raw Normal View History

services:
netbox: &netbox
2024-05-07 13:45:53 +02:00
image: docker.io/netboxcommunity/netbox:${VERSION-v4.0-2.9.1}
depends_on:
- postgres
- redis
2019-12-16 12:51:59 +01:00
- redis-cache
env_file: env/netbox.env
user: 'unit:root'
healthcheck:
2024-05-25 15:45:25 +02:00
test: curl -f http://localhost:8080/login/ || exit 1
2024-05-10 10:19:55 +02:00
start_period: 90s
timeout: 3s
interval: 15s
volumes:
- ./configuration:/etc/netbox/config:z,ro
- netbox-media-files:/opt/netbox/netbox/media:rw
- netbox-reports-files:/opt/netbox/netbox/reports:rw
- netbox-scripts-files:/opt/netbox/netbox/scripts:rw
netbox-worker:
<<: *netbox
depends_on:
netbox:
condition: service_healthy
command:
- /opt/netbox/venv/bin/python
- /opt/netbox/netbox/manage.py
- rqworker
healthcheck:
2024-04-19 21:14:21 +02:00
test: ps -aux | grep -v grep | grep -q rqworker || exit 1
start_period: 20s
timeout: 3s
interval: 15s
netbox-housekeeping:
<<: *netbox
depends_on:
netbox:
condition: service_healthy
command:
- /opt/netbox/housekeeping.sh
healthcheck:
2024-04-19 21:14:21 +02:00
test: ps -aux | grep -v grep | grep -q housekeeping || exit 1
start_period: 20s
timeout: 3s
interval: 15s
# postgres
postgres:
image: docker.io/postgres:16-alpine
2024-04-19 17:11:14 +02:00
healthcheck:
2024-04-19 21:14:21 +02:00
test: pg_isready -q -t 2 -d $$POSTGRES_DB -U $$POSTGRES_USER
start_period: 20s
2024-04-19 17:11:14 +02:00
timeout: 30s
2024-04-19 21:14:21 +02:00
interval: 10s
2024-04-19 17:11:14 +02:00
retries: 5
env_file: env/postgres.env
volumes:
- netbox-postgres-data:/var/lib/postgresql/data
# redis
redis:
image: docker.io/valkey/valkey:8.0-alpine
command:
- sh
- -c # this is to evaluate the $REDIS_PASSWORD from the env
2024-04-19 17:11:06 +02:00
- valkey-server --appendonly yes --requirepass $$REDIS_PASSWORD ## $$ because of docker-compose
2024-04-19 21:14:21 +02:00
healthcheck: &redis-healthcheck
2024-04-19 17:11:06 +02:00
test: "[ $$(valkey-cli --pass \"$${REDIS_PASSWORD}\" ping) = 'PONG' ]"
2024-04-19 21:14:21 +02:00
start_period: 5s
2024-04-19 17:11:06 +02:00
timeout: 3s
2024-04-19 21:14:21 +02:00
interval: 1s
2024-04-19 17:11:06 +02:00
retries: 5
2020-10-26 15:16:49 +01:00
env_file: env/redis.env
volumes:
- netbox-redis-data:/data
2019-12-16 12:51:59 +01:00
redis-cache:
image: docker.io/valkey/valkey:8.0-alpine
2019-12-16 12:51:59 +01:00
command:
- sh
- -c # this is to evaluate the $REDIS_PASSWORD from the env
2024-04-19 17:11:06 +02:00
- valkey-server --requirepass $$REDIS_PASSWORD ## $$ because of docker-compose
2024-04-19 21:14:21 +02:00
healthcheck: *redis-healthcheck
env_file: env/redis-cache.env
volumes:
- netbox-redis-cache-data:/data
volumes:
netbox-media-files:
driver: local
netbox-postgres-data:
driver: local
netbox-redis-cache-data:
driver: local
netbox-redis-data:
driver: local
netbox-reports-files:
driver: local
netbox-scripts-files:
driver: local