mirror of
https://github.com/koreanbots/core.git
synced 2025-12-15 14:10:22 +00:00
28 lines
554 B
YAML
28 lines
554 B
YAML
version: '3'
|
|
|
|
services:
|
|
mysql:
|
|
image: wonderlandpark/mariadb-mroonga:latest
|
|
hostname: mysql
|
|
container_name: mysql
|
|
env_file:
|
|
- .env
|
|
command:
|
|
- --character-set-server=utf8mb4
|
|
- --collation-server=utf8mb4_unicode_ci
|
|
volumes:
|
|
- /home/ubuntu/mysql-beta:/var/lib/mysql
|
|
web:
|
|
container_name: web
|
|
ports:
|
|
- 4000:3000
|
|
links:
|
|
- mysql
|
|
env_file:
|
|
- .env.production.local
|
|
image: wonderlandpark/koreanbots:latest
|
|
deploy:
|
|
resources:
|
|
limits:
|
|
memory: 500M
|