From 8c866bd17dcd942c0f81569ead9d6cd485ee1a3b Mon Sep 17 00:00:00 2001 From: Geoff Bourne Date: Sun, 31 May 2020 18:46:17 -0500 Subject: [PATCH] Un-flipped forge and FTBA examples compose files --- examples/docker-compose-forge.yml | 14 +++++++------- examples/docker-compose-ftba.yml | 18 +++++++++--------- 2 files changed, 16 insertions(+), 16 deletions(-) diff --git a/examples/docker-compose-forge.yml b/examples/docker-compose-forge.yml index 756d7d5b..4c9f6c86 100644 --- a/examples/docker-compose-forge.yml +++ b/examples/docker-compose-forge.yml @@ -2,8 +2,7 @@ version: "3.7" services: mc: - # FTBA support is only available in multiarch image tag - image: itzg/minecraft-server:multiarch + image: itzg/minecraft-server ports: # expose the Minecraft server port outside of container - 25565:25565 @@ -11,13 +10,14 @@ services: # REQUIRED for all types EULA: "TRUE" # Set server type (vs the default of vanilla) - TYPE: FTBA - # Use Pack ID from https://ftb.neptunepowered.org/pack/ftb-presents-direwolf20-1-12/ - FTB_MODPACK_ID: "31" + TYPE: FORGE volumes: # use a named, managed volume for data volume - - mc_ftb:/data + - mc_forge:/data + # attach local host directory "mods" in same directory as this compose file + # all mods in this directory get copied into /data/mods at startup + - ./mods:/mods:ro volumes: # declared the named volume, but use default/local storage engine - mc_ftb: {} + mc_forge: {} diff --git a/examples/docker-compose-ftba.yml b/examples/docker-compose-ftba.yml index 5558a36e..6e07bbbc 100644 --- a/examples/docker-compose-ftba.yml +++ b/examples/docker-compose-ftba.yml @@ -2,22 +2,22 @@ version: "3.7" services: mc: - image: itzg/minecraft-server + # FTBA support is only available in multiarch image tag + image: itzg/minecraft-server:multiarch ports: - # expose the Minecraft server port outside of container - - 25565:25565 + # expose the Minecraft server port outside of container + - 25565:25565 environment: # REQUIRED for all types EULA: "TRUE" # Set server type (vs the default of vanilla) TYPE: FTBA + # Use Pack ID from https://ftb.neptunepowered.org/pack/ftb-presents-direwolf20-1-12/ + FTB_MODPACK_ID: "31" volumes: - # use a named, managed volume for data volume - - mc_forge:/data - # attach local host directory "mods" in same directory as this compose file - # all mods in this directory get copied into /data/mods at startup - - ./mods:/mods:ro + # use a named, managed volume for data volume + - mc_ftb:/data volumes: # declared the named volume, but use default/local storage engine - mc_forge: {} + mc_ftb: {}