12 lines
270 B
YAML
12 lines
270 B
YAML
version: "3"
|
|
|
|
services:
|
|
bot:
|
|
build: .
|
|
environment:
|
|
- DISCORD_TOKEN=${DISCORD_TOKEN}
|
|
- DEBUG=${DEBUG:-}
|
|
- GUILD_ID=${GUILD_ID:-}
|
|
restart: unless-stopped
|
|
volumes:
|
|
- /etc/localtime:/etc/localtime:ro # Sync container time with host
|