aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar MarkKoz <[email protected]>2020-05-25 12:12:24 -0700
committerGravatar MarkKoz <[email protected]>2020-05-25 12:12:24 -0700
commit8b5c1aabf58eb3c794cc61173bd7500a696a8376 (patch)
treec04f8de10373e6dfdb1ac5b6d546c89699c693f5
parentImprove output of section name in config validation subtests (diff)
Expose the redis port to the host
Useful for those that run redis with docker-compose but not the bot. The bot on the host won't have access to the Docker network in such case so the port must be exposed.
-rw-r--r--docker-compose.yml2
1 files changed, 2 insertions, 0 deletions
diff --git a/docker-compose.yml b/docker-compose.yml
index 1bcf1008e..9884e35f0 100644
--- a/docker-compose.yml
+++ b/docker-compose.yml
@@ -14,6 +14,8 @@ services:
redis:
image: redis:5.0.9
+ ports:
+ - "127.0.0.1:6379:6379"
web:
image: pythondiscord/site:latest