Files
dnd-vault-template/docker-compose.yml
2026-07-13 17:08:55 +02:00

16 lines
297 B
YAML

version: "3.9"
services:
nginx:
image: nginx:latest
ports:
- "3000:80"
volumes:
- ./nginx.conf:/etc/nginx/nginx.conf:ro
depends_on:
- frontend
restart: always
frontend:
image: git.aranroig.com/syndria98/vault-${VAULT_NAME}:latest
restart: always