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