2017-04-19 16:48:21 +02:00
|
|
|
services:
|
2018-08-13 23:04:09 +02:00
|
|
|
netbox: &netbox
|
2024-05-07 13:45:53 +02:00
|
|
|
image: docker.io/netboxcommunity/netbox:${VERSION-v4.0-2.9.1}
|
2018-08-13 23:04:09 +02:00
|
|
|
depends_on:
|
|
|
|
- postgres
|
|
|
|
- redis
|
2019-12-16 12:51:59 +01:00
|
|
|
- redis-cache
|
2018-09-05 23:37:28 +02:00
|
|
|
env_file: env/netbox.env
|
2021-09-24 08:16:07 +02:00
|
|
|
user: 'unit:root'
|
2022-10-22 15:40:03 +02:00
|
|
|
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
|
2022-10-22 15:40:03 +02:00
|
|
|
timeout: 3s
|
|
|
|
interval: 15s
|
2018-08-13 23:04:09 +02:00
|
|
|
volumes:
|
2019-03-25 21:22:37 +01:00
|
|
|
- ./configuration:/etc/netbox/config:z,ro
|
2023-06-15 12:11:46 +02:00
|
|
|
- netbox-media-files:/opt/netbox/netbox/media:rw
|
|
|
|
- netbox-reports-files:/opt/netbox/netbox/reports:rw
|
|
|
|
- netbox-scripts-files:/opt/netbox/netbox/scripts:rw
|
2018-08-13 23:04:09 +02:00
|
|
|
netbox-worker:
|
|
|
|
<<: *netbox
|
|
|
|
depends_on:
|
2022-10-22 15:40:03 +02:00
|
|
|
netbox:
|
|
|
|
condition: service_healthy
|
2021-09-03 12:48:30 +02:00
|
|
|
command:
|
2020-11-10 15:23:07 +01:00
|
|
|
- /opt/netbox/venv/bin/python
|
2018-08-13 23:04:09 +02:00
|
|
|
- /opt/netbox/netbox/manage.py
|
|
|
|
- rqworker
|
2022-10-22 15:40:03 +02:00
|
|
|
healthcheck:
|
2024-04-19 21:14:21 +02:00
|
|
|
test: ps -aux | grep -v grep | grep -q rqworker || exit 1
|
2022-10-22 15:40:03 +02:00
|
|
|
start_period: 20s
|
|
|
|
timeout: 3s
|
|
|
|
interval: 15s
|
2021-09-03 12:48:30 +02:00
|
|
|
netbox-housekeeping:
|
|
|
|
<<: *netbox
|
|
|
|
depends_on:
|
2022-10-22 15:40:03 +02:00
|
|
|
netbox:
|
|
|
|
condition: service_healthy
|
2021-09-03 12:48:30 +02:00
|
|
|
command:
|
|
|
|
- /opt/netbox/housekeeping.sh
|
2022-10-22 15:40:03 +02:00
|
|
|
healthcheck:
|
2024-04-19 21:14:21 +02:00
|
|
|
test: ps -aux | grep -v grep | grep -q housekeeping || exit 1
|
2022-10-22 15:40:03 +02:00
|
|
|
start_period: 20s
|
|
|
|
timeout: 3s
|
|
|
|
interval: 15s
|
2020-10-18 15:16:16 +02:00
|
|
|
|
|
|
|
# postgres
|
2018-08-13 23:04:09 +02:00
|
|
|
postgres:
|
2023-09-16 01:13:09 +02:00
|
|
|
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
|
2018-09-05 23:37:28 +02:00
|
|
|
env_file: env/postgres.env
|
2018-08-13 23:04:09 +02:00
|
|
|
volumes:
|
|
|
|
- netbox-postgres-data:/var/lib/postgresql/data
|
2020-10-18 15:16:16 +02:00
|
|
|
|
|
|
|
# redis
|
2020-10-20 09:07:19 +02:00
|
|
|
redis:
|
2024-04-19 17:11:06 +02:00
|
|
|
image: docker.io/valkey/valkey:7.2-alpine
|
2018-08-14 00:19:29 +02:00
|
|
|
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
|
2018-08-13 23:04:09 +02:00
|
|
|
volumes:
|
|
|
|
- netbox-redis-data:/data
|
2019-12-16 12:51:59 +01:00
|
|
|
redis-cache:
|
2024-04-19 17:11:06 +02:00
|
|
|
image: docker.io/valkey/valkey:7.2-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
|
2020-02-14 12:33:28 +01:00
|
|
|
env_file: env/redis-cache.env
|
2022-09-23 14:33:49 +02:00
|
|
|
volumes:
|
2022-10-22 15:40:03 +02:00
|
|
|
- netbox-redis-cache-data:/data
|
2020-10-18 15:16:16 +02:00
|
|
|
|
2017-04-19 16:48:21 +02:00
|
|
|
volumes:
|
2018-08-13 23:04:09 +02:00
|
|
|
netbox-media-files:
|
|
|
|
driver: local
|
|
|
|
netbox-postgres-data:
|
|
|
|
driver: local
|
2023-04-08 08:07:07 +02:00
|
|
|
netbox-redis-cache-data:
|
|
|
|
driver: local
|
2018-08-13 23:04:09 +02:00
|
|
|
netbox-redis-data:
|
|
|
|
driver: local
|
2023-04-08 08:07:07 +02:00
|
|
|
netbox-reports-files:
|
|
|
|
driver: local
|
|
|
|
netbox-scripts-files:
|
2022-10-22 15:40:03 +02:00
|
|
|
driver: local
|