version: '3.4' services: netbox: &netbox image: ${IMAGE-netboxcommunity/netbox:latest} depends_on: postgres: condition: service_healthy redis: condition: service_started redis-cache: condition: service_started env_file: env/netbox.env user: 'unit:root' volumes: - ./test-configuration/logging.py:/etc/netbox/config/logging.py:z,ro healthcheck: 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:15-alpine env_file: env/postgres.env healthcheck: test: ["CMD-SHELL", "pg_isready"] interval: 10s timeout: 5s retries: 5 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 redis-cache: image: redis:7-alpine command: - sh - -c # this is to evaluate the $REDIS_PASSWORD from the env - redis-server --requirepass $$REDIS_PASSWORD ## $$ because of docker-compose env_file: env/redis-cache.env volumes: netbox-media-files: driver: local