From cd0d9ba6e32b695fcc88c2d5510bac01a4f273a4 Mon Sep 17 00:00:00 2001 From: David Daily Date: Fri, 31 May 2024 20:10:13 -0500 Subject: [PATCH] some containers :) --- Group Loot.md | 0 docker-compose.yaml | 33 +++++++++++++++++++++++++++++++++ 2 files changed, 33 insertions(+) mode change 100755 => 100644 Group Loot.md create mode 100644 docker-compose.yaml diff --git a/Group Loot.md b/Group Loot.md old mode 100755 new mode 100644 diff --git a/docker-compose.yaml b/docker-compose.yaml new file mode 100644 index 0000000..059e21c --- /dev/null +++ b/docker-compose.yaml @@ -0,0 +1,33 @@ +services: + 5etools: + container_name: 5e-tools + image: ghcr.io/5etools-mirror-2/5etools + restart: unless-stopped + networks: + - 5etools + + foundry: + container_name: foundryVTT + image: felddy/foundryvtt:release + volumes: + - type: bind + source: /home/david/mad-mage/foundry_data + target: /data + environment: + - CONTAINER_PRESERVE_CONFIG = true + secrets: + - config_json:config.json + networks: + - foundry + +secrets: + config_json: + file: secrets.json + +networks: + 5etools: + name: nginx + external: true + foundry: + name: nginx + external: true