blob: 6cf5e9bd17949fb67d8a262b00bdb9312bdb20ed (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
version: "3.7"
services:
seasonalbot:
build:
context: .
dockerfile: Dockerfile
container_name: seasonalbot
init: true
restart: always
environment:
- SEASONALBOT_TOKEN=yourtokenhere
- SEASONALBOT_DEBUG=true
# - SEASONALBOT_GUILD=
# - SEASONALBOT_ADMIN_ROLE_ID=
# - CHANNEL_ANNOUNCEMENTS=
# - CHANNEL_DEVLOG=
volumes:
- /opt/pythondiscord/seasonalbot/log:/bot/bot/log
- /opt/pythondiscord/seasonalbot/data:/bot/data
|