mirror of
https://github.com/netbox-community/netbox-docker.git
synced 2024-11-07 08:34:00 +01:00
66 lines
1.8 KiB
YAML
66 lines
1.8 KiB
YAML
services:
|
|
netbox: &netbox
|
|
image: ${IMAGE-netboxcommunity/netbox:latest}
|
|
depends_on:
|
|
postgres:
|
|
condition: service_healthy
|
|
redis:
|
|
condition: service_healthy
|
|
redis-cache:
|
|
condition: service_healthy
|
|
env_file: env/netbox.env
|
|
user: 'unit:root'
|
|
volumes:
|
|
- ./test-configuration/test_config.py:/etc/netbox/config/test_config.py:z,ro
|
|
healthcheck:
|
|
start_period: ${NETBOX_START_PERIOD-120s}
|
|
timeout: 3s
|
|
interval: 15s
|
|
test: "curl -f http://localhost:8080/api/ || exit 1"
|
|
netbox-worker:
|
|
<<: *netbox
|
|
command:
|
|
- /opt/netbox/venv/bin/python
|
|
- /opt/netbox/netbox/manage.py
|
|
- rqworker
|
|
healthcheck:
|
|
start_period: 40s
|
|
timeout: 3s
|
|
interval: 15s
|
|
test: "ps -aux | grep -v grep | grep -q rqworker || exit 1"
|
|
netbox-housekeeping:
|
|
<<: *netbox
|
|
command:
|
|
- /opt/netbox/housekeeping.sh
|
|
healthcheck:
|
|
start_period: 40s
|
|
timeout: 3s
|
|
interval: 15s
|
|
test: "ps -aux | grep -v grep | grep -q housekeeping || exit 1"
|
|
postgres:
|
|
image: postgres:16-alpine
|
|
env_file: env/postgres.env
|
|
healthcheck:
|
|
test: "pg_isready -t 2 -d $$POSTGRES_DB -U $$POSTGRES_USER" ## $$ because of docker-compose
|
|
interval: 10s
|
|
timeout: 5s
|
|
retries: 5
|
|
redis: &redis
|
|
image: redis:7-alpine
|
|
command:
|
|
- sh
|
|
- -c # this is to evaluate the $REDIS_PASSWORD from the env
|
|
- redis-server --appendonly yes --requirepass $$REDIS_PASSWORD ## $$ because of docker-compose
|
|
env_file: env/redis.env
|
|
healthcheck:
|
|
start_period: 20s
|
|
timeout: 3s
|
|
interval: 15s
|
|
test: "timeout 2 redis-cli ping"
|
|
redis-cache:
|
|
<<: *redis
|
|
env_file: env/redis-cache.env
|
|
volumes:
|
|
netbox-media-files:
|
|
driver: local
|