-
-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathdocker-compose.example.yml
More file actions
49 lines (47 loc) · 1.57 KB
/
docker-compose.example.yml
File metadata and controls
49 lines (47 loc) · 1.57 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
services:
bot:
image: kyrela/fixtweetbot:latest
restart: unless-stopped
depends_on:
- db
# You do NOT need to repeat these configuration values in the override file. They are automatically supplied to the bot.
environment:
# Should be equal to the name of the database container.
- DATABASE_HOST=db
- DATABASE_PORT=3306
# Should be equal to MYSQL_DATABASE.
- DATABASE_NAME=fixtweetbot
# Should be equal to MYSQL_USER.
- DATABASE_USER=fixtweetbot
# Should be equal to MYSQL_PASSWORD.
- DATABASE_PASSWORD=changeme123
# Your Discord bot token.
- DISCORD_TOKEN=your_discord_bot_token
# Optional: Server ID that you want to use for controlling your bot's instance.
# - DEV_GUILD=your_discord_dev_guild_id
# uncomment and create file if you want to override any default settings
# volumes:
# - ./override.config.yml:/usr/local/app/override.config.yml:ro
db:
image: mariadb:12.0
restart: unless-stopped
environment:
- MYSQL_DATABASE=fixtweetbot
- MYSQL_USER=fixtweetbot
# Generate a random password for this field.
- MYSQL_PASSWORD=changeme123
# Generate a random password for this field. Do not use the same password!
- MYSQL_ROOT_PASSWORD=changeme234
volumes:
- mysql_data:/var/lib/mysql
healthcheck:
test: ["CMD", "healthcheck.sh", "--connect", "--innodb_initialized"]
interval: 30s
timeout: 5s
retries: 5
start_period: 30s
ports:
- "3306:3306"
volumes:
mysql_data:
driver: local