netbox-docker/docker-compose.yml

62 lines
1.5 KiB
YAML
Raw Normal View History

version: '3.4'
services:
netbox: &netbox
2019-02-06 11:46:20 +01:00
image: netboxcommunity/netbox:${VERSION-latest}
depends_on:
- postgres
- redis
2019-12-16 12:51:59 +01:00
- redis-cache
- netbox-worker
env_file: env/netbox.env
user: '101'
volumes:
- ./startup_scripts:/opt/netbox/startup_scripts:z,ro
- ./initializers:/opt/netbox/initializers:z,ro
- ./configuration:/etc/netbox/config:z,ro
- ./reports:/etc/netbox/reports:z,ro
- ./scripts:/etc/netbox/scripts:z,ro
- netbox-media-files:/opt/netbox/netbox/media:z
netbox-worker:
<<: *netbox
depends_on:
- redis
entrypoint:
- /opt/netbox/venv/bin/python
- /opt/netbox/netbox/manage.py
command:
- rqworker
ports: []
# postgres
postgres:
2020-09-01 13:34:42 +02:00
image: postgres:12-alpine
env_file: env/postgres.env
volumes:
- netbox-postgres-data:/var/lib/postgresql/data
# redis
redis:
2020-09-01 13:34:42 +02:00
image: redis:6-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
2020-10-26 15:16:49 +01:00
env_file: env/redis.env
volumes:
- netbox-redis-data:/data
2019-12-16 12:51:59 +01:00
redis-cache:
2020-09-01 13:34:42 +02:00
image: redis:6-alpine
2019-12-16 12:51:59 +01:00
command:
- sh
- -c # this is to evaluate the $REDIS_PASSWORD from the env
2020-10-26 15:16:49 +01:00
- redis-server --requirepass $$REDIS_PASSWORD ## $$ because of docker-compose
env_file: env/redis-cache.env
volumes:
netbox-media-files:
driver: local
netbox-postgres-data:
driver: local
netbox-redis-data:
driver: local