2019-12-23 17:53:19 +01:00
|
|
|
version: '3.4'
|
|
|
|
services:
|
|
|
|
netbox:
|
|
|
|
image: ${IMAGE-netboxcommunity/netbox:latest}
|
|
|
|
depends_on:
|
|
|
|
- postgres
|
|
|
|
- redis
|
2020-02-14 12:35:47 +01:00
|
|
|
- redis-cache
|
2019-12-23 17:53:19 +01:00
|
|
|
env_file: env/netbox.env
|
|
|
|
user: '101'
|
|
|
|
volumes:
|
|
|
|
- ./startup_scripts:/opt/netbox/startup_scripts:z,ro
|
2020-01-17 17:21:47 +01:00
|
|
|
- ./${INITIALIZERS_DIR-initializers}:/opt/netbox/initializers:z,ro
|
2019-12-23 17:53:19 +01:00
|
|
|
- ./configuration:/etc/netbox/config:z,ro
|
|
|
|
- ./reports:/etc/netbox/reports:z,ro
|
|
|
|
- ./scripts:/etc/netbox/scripts:z,ro
|
|
|
|
- netbox-nginx-config:/etc/netbox-nginx:z
|
|
|
|
- netbox-static-files:/opt/netbox/netbox/static:z
|
|
|
|
- netbox-media-files:/opt/netbox/netbox/media:z
|
|
|
|
nginx:
|
|
|
|
command: nginx -c /etc/netbox-nginx/nginx.conf
|
2020-09-01 13:34:42 +02:00
|
|
|
image: nginx:1.19-alpine
|
2019-12-23 17:53:19 +01:00
|
|
|
depends_on:
|
|
|
|
- netbox
|
|
|
|
ports:
|
|
|
|
- 8080
|
|
|
|
volumes:
|
|
|
|
- netbox-static-files:/opt/netbox/netbox/static:ro
|
|
|
|
- netbox-nginx-config:/etc/netbox-nginx/:ro
|
|
|
|
postgres:
|
2020-09-01 13:34:42 +02:00
|
|
|
image: postgres:12-alpine
|
2019-12-23 17:53:19 +01:00
|
|
|
env_file: env/postgres.env
|
|
|
|
redis:
|
2020-09-01 13:34:42 +02:00
|
|
|
image: redis:6-alpine
|
2019-12-23 17:53:19 +01:00
|
|
|
command:
|
|
|
|
- sh
|
|
|
|
- -c # this is to evaluate the $REDIS_PASSWORD from the env
|
2020-02-14 12:35:47 +01:00
|
|
|
- redis-server --appendonly yes --requirepass $$REDIS_PASSWORD ## $$ because of docker-compose
|
2019-12-23 17:53:19 +01:00
|
|
|
env_file: env/redis.env
|
2020-02-14 12:35:47 +01:00
|
|
|
redis-cache:
|
2020-09-01 13:34:42 +02:00
|
|
|
image: redis:6-alpine
|
2020-02-14 12:35:47 +01:00
|
|
|
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-cache.env
|
2019-12-23 17:53:19 +01:00
|
|
|
volumes:
|
|
|
|
netbox-static-files:
|
|
|
|
driver: local
|
|
|
|
netbox-nginx-config:
|
|
|
|
driver: local
|
|
|
|
netbox-media-files:
|
|
|
|
driver: local
|