Skip to content

Commit ddee500

Browse files
committed
Adds more docs and stubs for future env
1 parent c4c5b1c commit ddee500

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

docker-compose.yml

+3-2
Original file line numberDiff line numberDiff line change
@@ -34,14 +34,15 @@ services:
3434
- "bot-logs:/app/logs"
3535
galactus:
3636
ports:
37-
# External port MUST match the port you specified in HOST for the bot!!!
37+
# See sample.env for details, but in general, match the GALACTUS_EXTERNAL_PORT w/ the GALACTUS_HOST's port
3838
- ${GALACTUS_EXTERNAL_PORT:-8123}:${GALACTUS_PORT}
3939
image: automuteus/galactus:${GALACTUS_TAG:-0.0.3}
4040
restart: always
4141
environment:
4242
# Do **NOT** change these
43-
- BROKER_PORT=${GALACTUS_PORT}
43+
- BROKER_PORT=${BROKER_PORT}
4444
- REDIS_ADDR=${GALACTUS_REDIS_ADDR}
45+
- GALACTUS_PORT=${GALACTUS_PORT}
4546
depends_on:
4647
- redis
4748

sample.env

+3-1
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,8 @@ EMOJI_GUILD_ID=
2121
CAPTURE_TIMEOUT=
2222

2323
# DO NOT change these unless you really know what you're doing
24-
GALACTUS_PORT=8123
24+
BROKER_PORT=8123
2525
GALACTUS_REDIS_ADDR=redis:6379
2626
AUTOMUTEUS_REDIS_ADDR=redis:6379
27+
#unused in v4
28+
GALACTUS_PORT=5858

0 commit comments

Comments
 (0)