From 215ff4c78b962b94c7d62e2459268588eb603e79 Mon Sep 17 00:00:00 2001 From: poslop Date: Sat, 10 Jan 2026 10:56:32 -0600 Subject: [PATCH] redbot --- docker-compose.d/Tools/redbot.yml | 42 +++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 docker-compose.d/Tools/redbot.yml diff --git a/docker-compose.d/Tools/redbot.yml b/docker-compose.d/Tools/redbot.yml new file mode 100644 index 0000000..a46364b --- /dev/null +++ b/docker-compose.d/Tools/redbot.yml @@ -0,0 +1,42 @@ +services: + redbot: + image: phasecorex/red-discordbot:extra-audio + container_name: redbot + restart: unless-stopped + volumes: + - ${Volumes}/redbot/data:/data + environment: + - TOKEN=MTQ1OTM0NzUwMDA1NzIzNTU2Mg.G7_CcI.xZCcpt_IxCkmbi-EpfQB-Mi2WanHAfkNE7aJsw + - PREFIX=. + - TZ=America/Chicago + - PUID=1000 + - OWNER=1411383242313171075 + - EXTRA_ARGS=--rpc --rpc-port 6133 + networks: + - caddy + + reddash: + command: + - sh + - -c + - |- + pip install --no-cache-dir red-web-dashboard && + reddash --host 0.0.0.0 --port 8969 --rpc-port 6133 + environment: + - TZ=America/Chicago + image: python:3.11 + restart: unless-stopped + container_name: reddash + network_mode: "service:redbot" + depends_on: + redbot: + condition: service_started + required: true + +networks: + caddy: + name: caddy + external: true + redbot: + name: redbot + external: true