forked from metin2/deploy
1
0
Fork 0

remove: Deprecated version.

This commit is contained in:
Exynox 2024-06-01 23:37:50 +01:00
parent a5db40e671
commit b0e4e71a7b
1 changed files with 11 additions and 12 deletions

View File

@ -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:
@ -24,7 +23,7 @@ services:
volumes: volumes:
- ./config/db.txt:/app/conf.txt - ./config/db.txt:/app/conf.txt
- ./storage/log/db/:/app/log/ - ./storage/log/db/:/app/log/
# Auth server # Auth server
auth: auth:
image: metin2/server:test image: metin2/server:test
@ -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,13 +46,13 @@ 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
- ./storage/log/ch1/first/:/app/log/ - ./storage/log/ch1/first/:/app/log/
- ./storage/mark/:/app/mark/ - ./storage/mark/:/app/mark/
ch1_game1: ch1_game1:
image: metin2/server:test image: metin2/server:test
restart: always restart: always
@ -61,12 +60,12 @@ 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
- ./storage/log/ch1/game1/:/app/log/ - ./storage/log/ch1/game1/:/app/log/
ch1_game2: ch1_game2:
image: metin2/server:test image: metin2/server:test
restart: always restart: always
@ -74,12 +73,12 @@ 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
- ./storage/log/ch1/game2/:/app/log/ - ./storage/log/ch1/game2/:/app/log/
# Game server (game99) # Game server (game99)
game99: game99:
image: metin2/server:test image: metin2/server:test
@ -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