1
0
mad-mage/docker-compose.yaml

35 lines
647 B
YAML
Raw Normal View History

2024-05-31 20:10:13 -05:00
services:
5etools:
container_name: 5e-tools
image: ghcr.io/5etools-mirror-2/5etools
restart: unless-stopped
networks:
- 5etools
2024-05-31 22:08:07 -05:00
2024-05-31 20:10:13 -05:00
foundry:
2024-05-31 22:08:07 -05:00
container_name: foundryVTT
image: felddy/foundryvtt:release
volumes:
- type: bind
source: /home/david/mad-mage/foundry_data
2024-05-31 20:10:13 -05:00
target: /data
2024-05-31 22:08:07 -05:00
environment:
- CONTAINER_PRESERVE_CONFIG = true
secrets:
- source: config_json
target: config.json
networks:
- foundry
2024-05-31 20:10:13 -05:00
secrets:
2024-05-31 22:08:07 -05:00
config_json:
file: ./secrets.json
2024-05-31 20:10:13 -05:00
networks:
5etools:
name: nginx
external: true
foundry:
2024-05-31 22:08:07 -05:00
name: nginx
external: true