mirror of
https://github.com/koreanbots/core.git
synced 2025-12-15 14:10:22 +00:00
21 lines
415 B
YAML
21 lines
415 B
YAML
version: "3"
|
|
|
|
services:
|
|
mysql:
|
|
image: mariadb/server:10.5
|
|
hostname: mysqlbeta
|
|
ports:
|
|
- "3307:3306"
|
|
env_file:
|
|
- .env.mysql.local
|
|
command:
|
|
- --character-set-server=utf8mb4
|
|
- --collation-server=utf8mb4_unicode_ci
|
|
volumes:
|
|
- /home/ubuntu/mysql-beta:/var/lib/mysql
|
|
koreanbots:
|
|
build: .
|
|
ports:
|
|
- 4000:3000
|
|
env_file:
|
|
- .env.production.local |