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