mirror of
https://github.com/koreanbots/core.git
synced 2025-12-15 14:10:22 +00:00
feat: added stable docker compose file
This commit is contained in:
parent
794a495f7e
commit
b94607ccd7
1
.gitignore
vendored
1
.gitignore
vendored
@ -33,6 +33,7 @@ yarn-error.log*
|
|||||||
.env.development.local
|
.env.development.local
|
||||||
.env.test.local
|
.env.test.local
|
||||||
.env.production.local
|
.env.production.local
|
||||||
|
.env.*.production.local
|
||||||
.env.mysql.local
|
.env.mysql.local
|
||||||
|
|
||||||
# vercel
|
# vercel
|
||||||
|
|||||||
23
docker-compose-stable.yml
Normal file
23
docker-compose-stable.yml
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
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
|
||||||
@ -19,8 +19,8 @@ services:
|
|||||||
links:
|
links:
|
||||||
- mysql
|
- mysql
|
||||||
env_file:
|
env_file:
|
||||||
- .env.production.local
|
- .env.beta.production.local
|
||||||
image: wonderlandpark/koreanbots:latest
|
image: wonderlandpark/koreanbots:nightly
|
||||||
deploy:
|
deploy:
|
||||||
resources:
|
resources:
|
||||||
limits:
|
limits:
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user