Compare commits
1 Commits
Author | SHA1 | Date |
---|---|---|
WildEgo | f70580f14e |
|
@ -1,4 +1,3 @@
|
||||||
version: '3.3'
|
|
||||||
services:
|
services:
|
||||||
# MySQL Database
|
# MySQL Database
|
||||||
mysql:
|
mysql:
|
||||||
|
@ -6,9 +5,9 @@ services:
|
||||||
restart: always
|
restart: always
|
||||||
environment:
|
environment:
|
||||||
# Password for root access
|
# Password for root access
|
||||||
MYSQL_ROOT_PASSWORD: 'metin2'
|
MYSQL_ROOT_PASSWORD: "metin2"
|
||||||
ports:
|
ports:
|
||||||
- '3306:3306'
|
- "3306:3306"
|
||||||
expose:
|
expose:
|
||||||
- 3306
|
- 3306
|
||||||
volumes:
|
volumes:
|
||||||
|
@ -33,7 +32,7 @@ services:
|
||||||
- 11000
|
- 11000
|
||||||
- 12000
|
- 12000
|
||||||
ports:
|
ports:
|
||||||
- '11000:11000'
|
- "11000:11000"
|
||||||
command: game
|
command: game
|
||||||
volumes:
|
volumes:
|
||||||
- ./config/auth.txt:/app/CONFIG
|
- ./config/auth.txt:/app/CONFIG
|
||||||
|
@ -47,7 +46,7 @@ services:
|
||||||
- 13000
|
- 13000
|
||||||
- 14000
|
- 14000
|
||||||
ports:
|
ports:
|
||||||
- '13000:13000'
|
- "13000:13000"
|
||||||
command: game
|
command: game
|
||||||
volumes:
|
volumes:
|
||||||
- ./config/ch1/first.txt:/app/CONFIG
|
- ./config/ch1/first.txt:/app/CONFIG
|
||||||
|
@ -61,7 +60,7 @@ services:
|
||||||
- 13001
|
- 13001
|
||||||
- 14001
|
- 14001
|
||||||
ports:
|
ports:
|
||||||
- '13001:13001'
|
- "13001:13001"
|
||||||
command: game
|
command: game
|
||||||
volumes:
|
volumes:
|
||||||
- ./config/ch1/game1.txt:/app/CONFIG
|
- ./config/ch1/game1.txt:/app/CONFIG
|
||||||
|
@ -74,7 +73,7 @@ services:
|
||||||
- 13002
|
- 13002
|
||||||
- 14002
|
- 14002
|
||||||
ports:
|
ports:
|
||||||
- '13002:13002'
|
- "13002:13002"
|
||||||
command: game
|
command: game
|
||||||
volumes:
|
volumes:
|
||||||
- ./config/ch1/game2.txt:/app/CONFIG
|
- ./config/ch1/game2.txt:/app/CONFIG
|
||||||
|
@ -88,7 +87,7 @@ services:
|
||||||
- 13099
|
- 13099
|
||||||
- 14099
|
- 14099
|
||||||
ports:
|
ports:
|
||||||
- '13099:13099'
|
- "13099:13099"
|
||||||
command: game
|
command: game
|
||||||
volumes:
|
volumes:
|
||||||
- ./config/game99.txt:/app/CONFIG
|
- ./config/game99.txt:/app/CONFIG
|
||||||
|
|
Loading…
Reference in New Issue