diff --git a/compose.yml b/compose.yml index 916bf8a..901183e 100755 --- a/compose.yml +++ b/compose.yml @@ -25,7 +25,7 @@ services: minecraft_server_network: ipv4_address: "10.100.1.3" ports: - - 25000:25565 + - ${VELOCITY_PORT}:25565 volumes: - velocity_data:/server:rw - ./velocity/config:/config:ro @@ -78,7 +78,7 @@ services: minecraft_server_network: ipv4_address: "10.100.1.6" ports: - - 8100:8100 + - ${BLUEMAP_PORT}:8100 volumes: - bluemap_data:/app/data:rw - bluemap_web:/app/web:rw @@ -318,7 +318,7 @@ services: minecraft_server_network: ipv4_address: "10.100.1.2" ports: - - 5434:5432 + - ${LUCKPERMS_PORT}:5432 volumes: - luckperms_data:/var/lib/postgresql/data:rw - /etc/passwd:/etc/passwd:ro diff --git a/template.env b/template.env index 4bfd9eb..76d9f2a 100755 --- a/template.env +++ b/template.env @@ -1,11 +1,11 @@ +VELOCITY_PORT=${CFG_VELOCITY_PORT} +BLUEMAP_PORT=${CFG_BLUEMAP_PORT} RCON_PASSWORD=${CFG_RCON_PASSWORD} - FORWARDING_SECRET=${CFG_FORWARDING_SECRET} - DCLINK_GUILD=${CFG_DCLINK_GUILD} DCLINK_CHANNEL=${CFG_DCLINK_CHANNEL} DCLINK_ROLE=${CFG_DCLINK_ROLE} DCLINK_TOKEN=${CFG_DCLINK_TOKEN} - LUCKPERMS_DB_PASSWORD=${CFG_LUCKPERMS_DB_PASSWORD} +LUCKPERMS_PORT=${CFG_LUCKPERMS_PORT}