1
0
mirror of https://git.ngram.ca/OpenJam/rc-servers synced 2026-08-23 23:08:52 +00:00

small fixes related to docker

This commit is contained in:
MaxSignal
2026-04-09 11:04:39 +00:00
parent 766604078f
commit 13f9da827d
3 changed files with 18 additions and 13 deletions

View File

@@ -14,7 +14,7 @@ services:
rc_services:
<<: *shared-release
working_dir: /app/rc_services
command: ./oj_rc_services --ip "0.0.0.0" --redirect "domain_or_ip_address:4533"
command: ./oj_rc_services --ip "0.0.0.0" --redirect "${REDIRECT:-127.0.0.1}:4533"
rc_services_room:
<<: *shared-release
@@ -24,7 +24,7 @@ services:
rc_social:
<<: *shared-release
working_dir: /app/rc_social
command: ./oj_rc_social --ip "0.0.0.0" --redirect "domain_or_ip_address:4535"
command: ./oj_rc_social --ip "0.0.0.0" --redirect "${REDIRECT:-127.0.0.1}:4535"
rc_social_room:
<<: *shared-release
@@ -34,7 +34,7 @@ services:
rc_chat:
<<: *shared-release
working_dir: /app/rc_chat
command: ./oj_rc_chat --ip "0.0.0.0" --redirect "domain_or_ip_address:4537"
command: ./oj_rc_chat --ip "0.0.0.0" --redirect "${REDIRECT:-127.0.0.1}:4537"
rc_chat_room:
<<: *shared-release
@@ -44,7 +44,7 @@ services:
rc_singleplayer:
<<: *shared-release
working_dir: /app/rc_singleplayer
command: ./oj_rc_singleplayer --ip "0.0.0.0" --redirect "domain_or_ip_address:4539"
command: ./oj_rc_singleplayer --ip "0.0.0.0" --redirect "${REDIRECT:-127.0.0.1}:4539"
rc_singleplayer_room:
<<: *shared-release
@@ -54,12 +54,12 @@ services:
rc_lobby:
<<: *shared-release
working_dir: /app/rc_lobby
command: ./oj_rc_lobby --ip "0.0.0.0" --redirect "domain_or_ip_address:4541"
command: ./oj_rc_lobby --ip "0.0.0.0" --redirect "${REDIRECT:-127.0.0.1}:4541"
rc_lobby_room:
<<: *shared-release
working_dir: /app/rc_lobby_room
command: ./oj_rc_lobby_room --ip "0.0.0.0" --redirect "domain_or_ip_address:4542"
command: ./oj_rc_lobby_room --ip "0.0.0.0" --redirect "${REDIRECT:-127.0.0.1}:4542"
rc_multiplayer:
<<: *shared-release