netbox-docker/docker-compose.test.yml

66 lines
1.8 KiB
YAML
Raw Normal View History

services:
2023-03-16 21:44:08 +01:00
netbox: &netbox
image: ${IMAGE-netboxcommunity/netbox:latest}
depends_on:
postgres:
condition: service_healthy
redis:
2023-03-29 12:40:32 +02:00
condition: service_healthy
redis-cache:
2023-03-29 12:40:32 +02:00
condition: service_healthy
env_file: env/netbox.env
user: 'unit:root'
volumes:
2023-07-07 08:12:33 +02:00
- ./test-configuration/test_config.py:/etc/netbox/config/test_config.py:z,ro
2023-03-16 21:44:08 +01:00
healthcheck:
2023-04-06 12:05:02 +02:00
start_period: ${NETBOX_START_PERIOD-120s}
2023-03-16 21:44:08 +01:00
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:
2023-09-23 16:42:28 +02:00
image: postgres:16-alpine
env_file: env/postgres.env
healthcheck:
2023-03-29 12:40:32 +02:00
test: "pg_isready -t 2 -d $$POSTGRES_DB -U $$POSTGRES_USER" ## $$ because of docker-compose
interval: 10s
timeout: 5s
retries: 5
2023-03-29 12:40:32 +02:00
redis: &redis
2022-06-09 08:12:46 +02:00
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
2023-03-29 12:40:32 +02:00
healthcheck:
start_period: 20s
timeout: 3s
interval: 15s
test: "timeout 2 redis-cli ping"
redis-cache:
2023-03-29 12:40:32 +02:00
<<: *redis
env_file: env/redis-cache.env
volumes:
netbox-media-files:
driver: local