2020-05-31 23:39:53 +00:00
|
|
|
services:
|
|
|
|
mc:
|
2024-12-04 03:25:44 +00:00
|
|
|
image: itzg/minecraft-server
|
2020-05-31 23:39:53 +00:00
|
|
|
ports:
|
2020-05-31 23:46:17 +00:00
|
|
|
# expose the Minecraft server port outside of container
|
2024-12-04 03:25:44 +00:00
|
|
|
- "25565:25565"
|
2020-05-31 23:39:53 +00:00
|
|
|
environment:
|
|
|
|
# REQUIRED for all types
|
|
|
|
EULA: "TRUE"
|
|
|
|
# Set server type (vs the default of vanilla)
|
2020-05-31 23:43:40 +00:00
|
|
|
TYPE: FTBA
|
2024-12-04 03:25:44 +00:00
|
|
|
# Use Pack ID from https://www.feed-the-beast.com/modpacks/119-ftb-presents-direwolf20-120?tab=about
|
|
|
|
FTB_MODPACK_ID: "119"
|
|
|
|
# FTB_MODPACK_VERSION_ID: ""
|
2020-05-31 23:39:53 +00:00
|
|
|
volumes:
|
2020-05-31 23:46:17 +00:00
|
|
|
# use a named, managed volume for data volume
|
2024-12-04 03:25:44 +00:00
|
|
|
- data:/data
|
2020-05-31 23:39:53 +00:00
|
|
|
|
|
|
|
volumes:
|
|
|
|
# declared the named volume, but use default/local storage engine
|
2024-12-04 03:25:44 +00:00
|
|
|
data: {}
|