mirror of
https://github.com/itzg/docker-minecraft-server.git
synced 2024-06-07 19:40:43 +00:00
51 lines
1.2 KiB
YAML
51 lines
1.2 KiB
YAML
|
version: "3.8"
|
||
|
|
||
|
services:
|
||
|
mc:
|
||
|
image: itzg/minecraft-server:java8-multiarch
|
||
|
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/minecraft-eternal/files/4102634
|
||
|
CF_EXCLUDE_MODS: |
|
||
|
cherished-worlds
|
||
|
controlling
|
||
|
ctm
|
||
|
custom-main-menu
|
||
|
ding
|
||
|
minecraft-rich-presence
|
||
|
enchantment-descriptions
|
||
|
just-enough-harvestcraft
|
||
|
just-enough-resources-jer
|
||
|
menumobs
|
||
|
more-overlays
|
||
|
mouse-tweaks
|
||
|
oldjavawarning
|
||
|
overloaded-armor-bar
|
||
|
reauth
|
||
|
thaumic-jei
|
||
|
tips
|
||
|
armor-toughness-bar
|
||
|
waila-harvestability
|
||
|
ambientsounds
|
||
|
biomeinfo
|
||
|
block-drops-jei-addon
|
||
|
loot-capacitor-tooltips
|
||
|
no-recipe-book
|
||
|
packmodemenu
|
||
|
resource-reloader
|
||
|
|
||
|
# blockdrops
|
||
|
|
||
|
CF_FORCE_SYNCHRONIZE: "true"
|
||
|
MEMORY: 4G
|
||
|
volumes:
|
||
|
- mc-data:/data
|
||
|
- ./downloads:/downloads
|
||
|
|
||
|
volumes:
|
||
|
mc-data: {}
|