netbox-acls/docker-compose.yml
Ryan Merolle f0b461616b
netbox 3.6 support (#167)
netbox 3.6 support thanks to @abhi1693 & @kbelokon
2024-03-27 00:09:32 -04:00

29 lines
586 B
YAML

---
version: '3.4'
services:
netbox:
build:
dockerfile: Dockerfile
context: .
depends_on:
- postgres
- redis
env_file: env/netbox.env
volumes:
- ./configuration:/etc/netbox/config:z,ro
# postgres
postgres:
image: postgres:15-alpine
env_file: env/postgres.env
# redis
redis:
image: redis:7-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
env_file: env/redis.env