2017-04-21 13:46:15 +02:00
|
|
|
version: '3'
|
2017-04-19 16:48:21 +02:00
|
|
|
services:
|
2018-08-13 23:04:09 +02:00
|
|
|
netbox: &netbox
|
|
|
|
build:
|
|
|
|
context: .
|
|
|
|
args:
|
|
|
|
- BRANCH=${VERSION-master}
|
|
|
|
image: ninech/netbox:${VERSION-latest}
|
|
|
|
depends_on:
|
|
|
|
- postgres
|
|
|
|
- redis
|
|
|
|
- netbox-worker
|
2018-09-05 23:37:28 +02:00
|
|
|
env_file: env/netbox.env
|
2018-08-13 23:04:09 +02:00
|
|
|
volumes:
|
|
|
|
- ./startup_scripts:/opt/netbox/startup_scripts:ro
|
|
|
|
- ./initializers:/opt/netbox/initializers:ro
|
|
|
|
- ./configuration:/etc/netbox/config:ro
|
|
|
|
- netbox-nginx-config:/etc/netbox-nginx/
|
|
|
|
- netbox-static-files:/opt/netbox/netbox/static
|
|
|
|
- netbox-media-files:/opt/netbox/netbox/media
|
|
|
|
- netbox-report-files:/etc/netbox/reports:ro
|
|
|
|
netbox-worker:
|
|
|
|
<<: *netbox
|
|
|
|
depends_on:
|
|
|
|
- redis
|
|
|
|
entrypoint:
|
|
|
|
- python3
|
|
|
|
- /opt/netbox/netbox/manage.py
|
|
|
|
command:
|
|
|
|
- rqworker
|
|
|
|
nginx:
|
|
|
|
command: nginx -c /etc/netbox-nginx/nginx.conf
|
2018-08-14 00:30:43 +02:00
|
|
|
image: nginx:1.15-alpine
|
2018-08-13 23:04:09 +02:00
|
|
|
depends_on:
|
|
|
|
- netbox
|
|
|
|
ports:
|
|
|
|
- 8080
|
|
|
|
volumes:
|
|
|
|
- netbox-static-files:/opt/netbox/netbox/static:ro
|
|
|
|
- netbox-nginx-config:/etc/netbox-nginx/:ro
|
|
|
|
postgres:
|
|
|
|
image: postgres:10.4-alpine
|
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
|
|
|
|
redis:
|
|
|
|
image: redis:4-alpine
|
2018-08-14 00:19:29 +02: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
|
2018-09-05 23:37:28 +02:00
|
|
|
env_file: env/redis.env
|
2018-08-13 23:04:09 +02:00
|
|
|
volumes:
|
|
|
|
- netbox-redis-data:/data
|
2017-04-19 16:48:21 +02:00
|
|
|
volumes:
|
2018-08-13 23:04:09 +02:00
|
|
|
netbox-static-files:
|
|
|
|
driver: local
|
|
|
|
netbox-nginx-config:
|
|
|
|
driver: local
|
|
|
|
netbox-media-files:
|
|
|
|
driver: local
|
|
|
|
netbox-report-files:
|
|
|
|
driver: local
|
|
|
|
netbox-postgres-data:
|
|
|
|
driver: local
|
|
|
|
netbox-redis-data:
|
|
|
|
driver: local
|