2019-10-10 05:42:10 -05:00
|
|
|
version: '3.4'
|
2017-04-19 09:48:21 -05:00
|
|
|
services:
|
2018-08-13 16:04:09 -05:00
|
|
|
netbox: &netbox
|
2019-02-06 04:46:20 -06:00
|
|
|
image: netboxcommunity/netbox:${VERSION-latest}
|
2018-08-13 16:04:09 -05:00
|
|
|
depends_on:
|
|
|
|
- postgres
|
|
|
|
- redis
|
2019-12-16 05:51:59 -06:00
|
|
|
- redis-cache
|
2018-08-13 16:04:09 -05:00
|
|
|
- netbox-worker
|
2018-09-05 16:37:28 -05:00
|
|
|
env_file: env/netbox.env
|
2019-11-18 01:23:44 -06:00
|
|
|
user: '101'
|
2018-08-13 16:04:09 -05:00
|
|
|
volumes:
|
2019-03-25 15:22:37 -05:00
|
|
|
- ./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
|
2019-10-14 02:47:18 -05:00
|
|
|
- ./scripts:/etc/netbox/scripts:z,ro
|
2019-03-25 15:22:37 -05:00
|
|
|
- netbox-nginx-config:/etc/netbox-nginx:z
|
|
|
|
- netbox-static-files:/opt/netbox/netbox/static:z
|
|
|
|
- netbox-media-files:/opt/netbox/netbox/media:z
|
2018-08-13 16:04:09 -05:00
|
|
|
netbox-worker:
|
|
|
|
<<: *netbox
|
|
|
|
depends_on:
|
|
|
|
- redis
|
|
|
|
entrypoint:
|
|
|
|
- python3
|
|
|
|
- /opt/netbox/netbox/manage.py
|
|
|
|
command:
|
|
|
|
- rqworker
|
|
|
|
nginx:
|
|
|
|
command: nginx -c /etc/netbox-nginx/nginx.conf
|
2019-11-20 04:00:09 -06:00
|
|
|
image: nginx:1.17-alpine
|
2018-08-13 16:04:09 -05:00
|
|
|
depends_on:
|
|
|
|
- netbox
|
|
|
|
ports:
|
|
|
|
- 8080
|
|
|
|
volumes:
|
|
|
|
- netbox-static-files:/opt/netbox/netbox/static:ro
|
|
|
|
- netbox-nginx-config:/etc/netbox-nginx/:ro
|
|
|
|
postgres:
|
2019-12-10 15:41:57 -06:00
|
|
|
image: postgres:11-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
|
|
|
|
redis:
|
2019-11-26 05:14:51 -06:00
|
|
|
image: redis:5-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
|
2018-09-05 16:37:28 -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:
|
|
|
|
image: redis:5-alpine
|
|
|
|
command:
|
|
|
|
- sh
|
|
|
|
- -c # this is to evaluate the $REDIS_PASSWORD from the env
|
|
|
|
- redis-server --requirepass $$REDIS_PASSWORD ## $$ because of docker-compose
|
|
|
|
env_file: env/redis.env
|
2017-04-19 09:48:21 -05:00
|
|
|
volumes:
|
2018-08-13 16:04:09 -05:00
|
|
|
netbox-static-files:
|
|
|
|
driver: local
|
|
|
|
netbox-nginx-config:
|
|
|
|
driver: local
|
|
|
|
netbox-media-files:
|
|
|
|
driver: local
|
|
|
|
netbox-postgres-data:
|
|
|
|
driver: local
|
|
|
|
netbox-redis-data:
|
|
|
|
driver: local
|