mirror of
https://github.com/itzg/docker-minecraft-server.git
synced 2024-06-07 19:40:43 +00:00
20 lines
476 B
YAML
20 lines
476 B
YAML
version: "3.8"
|
|
|
|
services:
|
|
mc:
|
|
image: itzg/minecraft-server
|
|
ports:
|
|
- "25565:25565"
|
|
environment:
|
|
EULA: "true"
|
|
TYPE: AUTO_CURSEFORGE
|
|
CF_API_KEY: # allocate from https://console.curseforge.com/
|
|
CF_PAGE_URL: "https://www.curseforge.com/minecraft/modpacks/one-block-modded/files/4136487"
|
|
CF_SET_LEVEL_FROM: OVERRIDES
|
|
DEBUG: "false"
|
|
MEMORY: 4G
|
|
volumes:
|
|
- mc-data:/data
|
|
|
|
volumes:
|
|
mc-data: {} |