37 lines
891 B
YAML
37 lines
891 B
YAML
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=
|
|
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: {}
|