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
|
2020-10-18 08:16:16 -05:00
|
|
|
|
|
|
|
# nginx
|
2018-08-13 16:04:09 -05:00
|
|
|
nginx:
|
|
|
|
command: nginx -c /etc/netbox-nginx/nginx.conf
|
2020-09-01 06:34:42 -05:00
|
|
|
image: nginx:1.19-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
|
2020-10-18 08:16:16 -05:00
|
|
|
|
|
|
|
# postgres
|
2018-08-13 16:04:09 -05:00
|
|
|
postgres:
|
2020-09-01 06:34:42 -05:00
|
|
|
image: postgres:12-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:
|
2020-09-01 06:34:42 -05:00
|
|
|
image: redis:6-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:
|
2020-09-01 06:34:42 -05:00
|
|
|
image: redis:6-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
|
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-static-files:
|
|
|
|
driver: local
|
|
|
|
netbox-nginx-config:
|
|
|
|
driver: local
|
|
|
|
netbox-media-files:
|
|
|
|
driver: local
|
|
|
|
netbox-postgres-data:
|
|
|
|
driver: local
|
|
|
|
netbox-redis-data:
|
|
|
|
driver: local
|