mirror of
https://github.com/koreanbots/core.git
synced 2025-12-15 14:10:22 +00:00
20 lines
408 B
YAML
20 lines
408 B
YAML
version: "3"
|
|
|
|
services:
|
|
mysql:
|
|
image: mariadb/server:10.5
|
|
container_name: mysql
|
|
environment:
|
|
MARIADB_ROOT_PASSWORD: "${MARIADB_ROOT_PASSWORD}"
|
|
command:
|
|
- --character-set-server=utf8mb4
|
|
- --collation-server=utf8mb4_unicode_ci
|
|
volumes:
|
|
- /var/lib/mysql
|
|
koreanbots:
|
|
container_name: koreanbots
|
|
build: .
|
|
ports:
|
|
- 4000:3000
|
|
links:
|
|
- mysql |