mirror of
https://github.com/itzg/docker-minecraft-server
synced 2025-01-10 11:18:43 +00:00
18 lines
No EOL
457 B
YAML
18 lines
No EOL
457 B
YAML
services:
|
|
mc:
|
|
image: itzg/minecraft-server
|
|
ports:
|
|
- "25565:25565"
|
|
environment:
|
|
EULA: "true"
|
|
MODPACK_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/prominence-2-rpg
|
|
CF_FILENAME_MATCHER: "2.8.7"
|
|
MEMORY: 4G
|
|
volumes:
|
|
- mc-data:/data
|
|
|
|
volumes:
|
|
mc-data: {} |