mirror of
https://github.com/itzg/docker-minecraft-server.git
synced 2024-06-07 19:40:43 +00:00
22 lines
570 B
YAML
22 lines
570 B
YAML
version: "3.8"
|
|
|
|
services:
|
|
mc:
|
|
image: itzg/minecraft-server
|
|
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/all-the-mods-9
|
|
# Optional: select a specific version/file
|
|
#CF_FILENAME_MATCHER: "0.2.34"
|
|
MEMORY: 4G
|
|
volumes:
|
|
- mc-data:/data
|
|
- ./downloads:/downloads
|
|
|
|
volumes:
|
|
mc-data: {} |