mc-router/docs/docker-compose.yml

28 lines
603 B
YAML
Raw Normal View History

2019-07-27 18:36:16 +02:00
services:
vanilla:
image: itzg/minecraft-server
environment:
EULA: "TRUE"
forge:
image: itzg/minecraft-server
environment:
EULA: "TRUE"
TYPE: FORGE
router:
image: ${MC_ROUTER_IMAGE:-itzg/mc-router}
2022-07-17 17:01:18 +02:00
depends_on:
- forge
- vanilla
environment:
# enable API
API_BINDING: ":25564"
DEBUG: true
MAPPING: |
vanilla.example.com=vanilla:25565
forge.example.com=forge:25565
2019-07-27 18:36:16 +02:00
ports:
- "25565:25565"
# bind the API port to only loopback to avoid external exposure
- "127.0.0.1:25564:25564"
2019-07-27 18:36:16 +02:00