mirror of
https://github.com/itzg/docker-minecraft-server
synced 2025-01-25 10:15:02 +00:00
34 lines
928 B
YAML
34 lines
928 B
YAML
|
# This runs the most recent version of Roguelike Adventures and Dungeons 2. Version 1.11 as of writing.
|
||
|
services:
|
||
|
mc:
|
||
|
image: itzg/minecraft-server:java8
|
||
|
ports:
|
||
|
- "25565:25565"
|
||
|
environment:
|
||
|
EULA: "true"
|
||
|
MOD_PLATFORM: AUTO_CURSEFORGE
|
||
|
# allocate from https://console.curseforge.com/ and set in .env file
|
||
|
CF_API_KEY: ${CF_API_KEY}
|
||
|
CF_PAGE_URL: https://www.curseforge.com/minecraft/modpacks/roguelike-adventures-and-dungeons-2
|
||
|
# Optional: select a specific version/file
|
||
|
#CF_FILENAME_MATCHER: "0.2.34"
|
||
|
CF_EXCLUDE_MODS: |
|
||
|
controlling
|
||
|
craftpresence
|
||
|
creative-core
|
||
|
default-options
|
||
|
equipment-compare
|
||
|
item-borders
|
||
|
itemphysic-lite
|
||
|
konkrete
|
||
|
oauth
|
||
|
sound-filters
|
||
|
toast-control
|
||
|
CF_FORCE_SYNCHRONIZE: "true"
|
||
|
MEMORY: 4G
|
||
|
volumes:
|
||
|
- mc-data:/data
|
||
|
|
||
|
volumes:
|
||
|
mc-data: {}
|