mirror of
https://github.com/itzg/docker-minecraft-server
synced 2025-01-09 10:48:42 +00:00
18 lines
No EOL
444 B
YAML
18 lines
No EOL
444 B
YAML
services:
|
|
mc:
|
|
image: itzg/minecraft-server
|
|
environment:
|
|
EULA: true
|
|
MODPACK_PLATFORM: AUTO_CURSEFORGE
|
|
# Set CF_API_KEY=... in a .env file next to this compose file and don't source control that file
|
|
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: {} |