From ff05ca66385e1b7e501016f1dad4e3ec41bd8f07 Mon Sep 17 00:00:00 2001 From: JJ-8 <34778827+JJ-8@users.noreply.github.com> Date: Sat, 10 Aug 2024 14:39:00 +0200 Subject: [PATCH] Fix missing environment variables for Discord registration These were missing in the docker-compose.yml file. Without these it is not possible to configure the options for the `/register` command. --- docker-compose.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/docker-compose.yml b/docker-compose.yml index fa8a22df..a9db482f 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -25,6 +25,9 @@ services: DISCORD_BOT_TOKEN: ${DISCORD_BOT_TOKEN:-bot_token} DISCORD_SERVER_ID: ${DISCORD_SERVER_ID:-server_id} DISCORD_VOICE_CHANNELS: ${DISCORD_VOICE_CHANNELS:-3} + DISCORD_REGISTRATION_ENABLED: ${DISCORD_REGISTRATION_ENABLED:-false} + DISCORD_REGISTRATION_CTFNOTE_ROLE: ${DISCORD_REGISTRATION_CTFNOTE_ROLE} + DISCORD_REGISTRATION_ROLE_ID: ${DISCORD_REGISTRATION_ROLE_ID} TZ: ${TZ:-UTC} LC_ALL: ${LC_ALL:-en_US.UTF-8} SESSION_SECRET: ${SESSION_SECRET:-}