mirror of
https://github.com/itzg/docker-minecraft-server.git
synced 2024-06-07 19:40:43 +00:00
21 lines
584 B
YAML
21 lines
584 B
YAML
version: "3.7"
|
|
|
|
services:
|
|
mc:
|
|
image: itzg/minecraft-server
|
|
ports:
|
|
- 25565:25565
|
|
volumes:
|
|
# Attach .../Curse/Minecraft/Instances for use at /instances
|
|
- ./Instances:/instances:ro
|
|
# Attach /data as usual
|
|
- ./ServerData:/data
|
|
environment:
|
|
EULA: "TRUE"
|
|
# Modpacks generally need more memory, so let's give at 2 GB
|
|
MEMORY: 2G
|
|
# Use new CURSE_INSTANCE type
|
|
TYPE: CURSE_INSTANCE
|
|
# Reference directory of or full path to minecraftinstance.json
|
|
CURSE_INSTANCE_JSON: /instances/FTB Presents SkyFactory 3
|