mirror of
https://github.com/koreanbots/core.git
synced 2025-12-16 06:20:24 +00:00
24 lines
495 B
YAML
24 lines
495 B
YAML
version: '3'
|
|
|
|
services:
|
|
mysql:
|
|
image: wonderlandpark/mariadb-mroonga:latest
|
|
hostname: mysql
|
|
container_name: mysql-stable
|
|
env_file:
|
|
- .env
|
|
command:
|
|
- --character-set-server=utf8mb4
|
|
- --collation-server=utf8mb4_unicode_ci
|
|
volumes:
|
|
- /home/ubuntu/mysql:/var/lib/mysql
|
|
web:
|
|
container_name: web-stable
|
|
ports:
|
|
- 5000:3000
|
|
links:
|
|
- mysql
|
|
env_file:
|
|
- .env.production.local
|
|
image: wonderlandpark/koreanbots:stable
|