-
-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathdocker-compose-stable.yml
More file actions
38 lines (37 loc) · 783 Bytes
/
docker-compose-stable.yml
File metadata and controls
38 lines (37 loc) · 783 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
version: '3'
services:
mysql:
container_name: mysql-stable
restart: always
image: wonderlandpark/mariadb-mroonga:latest
hostname: mysql
env_file:
- .env
command:
- --character-set-server=utf8mb4
- --collation-server=utf8mb4_unicode_ci
volumes:
- /home/ubuntu/mysql:/var/lib/mysql
mongo:
container_name: mongo-stable
restart: always
image: mongo:5.0
hostname: mongo
env_file:
- .env
volumes:
- /home/ubuntu/mongo:/data/db
web:
container_name: web-stable
restart: always
image: wonderlandpark/koreanbots:nightly
ports:
- 3000:3000
links:
- mysql
env_file:
- .env.production.local
deploy:
resources:
limits:
memory: 500M