From b0e4e71a7b2785055dbae79044f8017b33754b6d Mon Sep 17 00:00:00 2001 From: Exynox Date: Sat, 1 Jun 2024 23:37:50 +0100 Subject: [PATCH] remove: Deprecated version. --- docker-compose.yml | 23 +++++++++++------------ 1 file changed, 11 insertions(+), 12 deletions(-) diff --git a/docker-compose.yml b/docker-compose.yml index 5b38161..838baf4 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -1,4 +1,3 @@ -version: '3.3' services: # MySQL Database mysql: @@ -6,9 +5,9 @@ services: restart: always environment: # Password for root access - MYSQL_ROOT_PASSWORD: 'metin2' + MYSQL_ROOT_PASSWORD: "metin2" ports: - - '3306:3306' + - "3306:3306" expose: - 3306 volumes: @@ -24,7 +23,7 @@ services: volumes: - ./config/db.txt:/app/conf.txt - ./storage/log/db/:/app/log/ - + # Auth server auth: image: metin2/server:test @@ -33,7 +32,7 @@ services: - 11000 - 12000 ports: - - '11000:11000' + - "11000:11000" command: game volumes: - ./config/auth.txt:/app/CONFIG @@ -47,13 +46,13 @@ services: - 13000 - 14000 ports: - - '13000:13000' + - "13000:13000" command: game volumes: - ./config/ch1/first.txt:/app/CONFIG - ./storage/log/ch1/first/:/app/log/ - ./storage/mark/:/app/mark/ - + ch1_game1: image: metin2/server:test restart: always @@ -61,12 +60,12 @@ services: - 13001 - 14001 ports: - - '13001:13001' + - "13001:13001" command: game volumes: - ./config/ch1/game1.txt:/app/CONFIG - ./storage/log/ch1/game1/:/app/log/ - + ch1_game2: image: metin2/server:test restart: always @@ -74,12 +73,12 @@ services: - 13002 - 14002 ports: - - '13002:13002' + - "13002:13002" command: game volumes: - ./config/ch1/game2.txt:/app/CONFIG - ./storage/log/ch1/game2/:/app/log/ - + # Game server (game99) game99: image: metin2/server:test @@ -88,7 +87,7 @@ services: - 13099 - 14099 ports: - - '13099:13099' + - "13099:13099" command: game volumes: - ./config/game99.txt:/app/CONFIG