generated from Oliver/discord-bot-template
31 lines
639 B
YAML
31 lines
639 B
YAML
|
version: '3.1'
|
||
|
name: discord-egress
|
||
|
services:
|
||
|
bot:
|
||
|
container_name: discord-egress_bot
|
||
|
build: https://git.oliveratkinson.net/Oliver/discord-egress.git
|
||
|
restart: always
|
||
|
environment:
|
||
|
# These will read from the .env file
|
||
|
DISCORD_INTENTS: ${DISCORD_INTENTS}
|
||
|
DISCORD_TOKEN: ${DISCORD_TOKEN}
|
||
|
DISCORD_ID: ${DISCORD_ID}
|
||
|
networks:
|
||
|
- external
|
||
|
- internal
|
||
|
redis:
|
||
|
container_name: discord-egress_redis
|
||
|
image: redis
|
||
|
restart: always
|
||
|
ports:
|
||
|
- 6379:6379
|
||
|
networks:
|
||
|
- internal
|
||
|
|
||
|
networks:
|
||
|
internal:
|
||
|
driver: bridge
|
||
|
internal: true
|
||
|
external:
|
||
|
driver: bridge
|