From 76e5ae537cde98b596c65ed8a0abc874a981fa4e Mon Sep 17 00:00:00 2001 From: nathan Date: Tue, 28 Apr 2026 17:16:25 -0400 Subject: [PATCH] feat: add 5etools service configuration to Docker Compose Co-authored-by: Copilot --- nodes/heimdall/5etools/compose.yaml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 nodes/heimdall/5etools/compose.yaml diff --git a/nodes/heimdall/5etools/compose.yaml b/nodes/heimdall/5etools/compose.yaml new file mode 100644 index 0000000..212d6f7 --- /dev/null +++ b/nodes/heimdall/5etools/compose.yaml @@ -0,0 +1,21 @@ +services: +# https://github.com/Jafner/5etools-docker + 5etools: + restart: unless-stopped + container_name: 5etools + image: jafner/5etools-docker + volumes: + - /mnt/appdata/5etools/data:/usr/local/apache2/htdocs + - /mnt/appdata/5etools/data/homebrew/index.json:/usr/local/apache2/htdocs/homebrew/index.json:ro # try to prevent overwriting custom index on restart + environment: + - SOURCE=GITHUB + - IMG=TRUE + # Use the 2014 Rules + - DL_LINK=https://github.com/5etools-mirror-3/5etools-2014-src.git + - IMG_LINK=https://github.com/5etools-mirror-3/5etools-2014-img.git + networks: + - proxy-net + +networks: + proxy-net: + external: true \ No newline at end of file