mirror of
https://github.com/itzg/docker-minecraft-server.git
synced 2026-02-17 07:03:57 +00:00
21 lines
649 B
YAML
21 lines
649 B
YAML
services:
|
|
mc:
|
|
image: itzg/minecraft-server
|
|
environment:
|
|
EULA: true
|
|
MODPACK_PLATFORM: AUTO_CURSEFORGE
|
|
# Allocate API key from https://console.curseforge.com/
|
|
# and set in .env file making sure to double up dollar signs, such as
|
|
# CF_API_KEY=$$2a$$10$$....
|
|
# Refer to https://docker-minecraft-server.readthedocs.io/en/latest/types-and-platforms/mod-platforms/auto-curseforge/#api-key
|
|
CF_API_KEY: ${CF_API_KEY}
|
|
CF_SLUG: better-mc-fabric-bmc1
|
|
# CF_FILENAME_MATCHER: v18.5
|
|
MEMORY: 4G
|
|
volumes:
|
|
- mc:/data
|
|
ports:
|
|
- "25565:25565"
|
|
|
|
volumes:
|
|
mc: {} |