-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
37 lines (36 loc) · 918 Bytes
/
docker-compose.yml
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
version: "3.7"
services:
app:
container_name: pepebot_server
image: dutchellie/pepebot
restart: always
depends_on:
- db
environment:
- DB_USER=
- DB_PASS=
- DISCORD_TOKEN=
- RATE_LIMIT=
- TIME_LIMIT=
- PEPE_SERVER=
db:
container_name: pepebot_database
image: mysql:8.0
restart: always
environment:
MYSQL_ROOT_PASSWORD:
MYSQL_DATABASE:
MYSQL_USER:
MYSQL_PASSWORD:
volumes:
- pepe_db_data:/var/lib/mysql
pepe_service:
container_name: pepebot_service
image: dutchellie/pepebot_service:latest
restart: always
environment:
- PEPE_DIR=/pepe/1.00
volumes:
- /your/pepe/folder:/pepe #edit this
volumes:
pepe_db_data: {}