netbox-acls/docker-compose.yml
Ryan Merolle 01c3592283
Netbox 3.7 (#181)
* 3.7 prep
* bump image versions to match netbox-docker
* add documentation on creating releases
* fix typos in docs
2024-03-27 00:46:36 -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:16-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