From 2412f6a7401a34071935fcb7e4ccb3b2ef920e7a Mon Sep 17 00:00:00 2001 From: EmilyxFox <48589793+EmilyxFox@users.noreply.github.com> Date: Sun, 3 Nov 2024 22:16:21 +0100 Subject: [PATCH] add ftb-evolution example file (#3135) --- examples/ftb-evolution/compose.yaml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 examples/ftb-evolution/compose.yaml diff --git a/examples/ftb-evolution/compose.yaml b/examples/ftb-evolution/compose.yaml new file mode 100644 index 00000000..a3ef3eb8 --- /dev/null +++ b/examples/ftb-evolution/compose.yaml @@ -0,0 +1,21 @@ +services: + mc: + image: itzg/minecraft-server + tty: true + stdin_open: true + ports: + # Game port + - "25565:25565/tcp" + environment: + EULA: "TRUE" + TYPE: AUTO_CURSEFORGE + CF_API_KEY: ${CF_API_KEY} + CF_PAGE_URL: https://www.curseforge.com/minecraft/modpacks/ftb-evolution + # This modpack includes an override client-side only mod that will prevent the server from starting. + # For more information on override exclusions see: + # https://docker-minecraft-server.readthedocs.io/en/latest/types-and-platforms/mod-platforms/auto-curseforge/#excluding-overrides-files + CF_OVERRIDES_EXCLUSIONS: mods/rgp_client*.jar + MEMORY: 6G + volumes: + # attach the relative directory 'data' to the container's /data path + - ./data:/data \ No newline at end of file