-
-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add ftb-evolution example file (#3135)
- Loading branch information
Showing
1 changed file
with
21 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 |