2021-05-14 03:51:47 +00:00
|
|
|
version: "3.8"
|
2020-04-19 18:47:14 +00:00
|
|
|
|
|
|
|
services:
|
|
|
|
mc:
|
2021-10-17 03:32:34 +00:00
|
|
|
image: itzg/minecraft-server
|
2020-04-19 18:47:14 +00:00
|
|
|
ports:
|
|
|
|
# expose the Minecraft server port outside of container
|
2021-10-17 03:32:34 +00:00
|
|
|
- "25565:25565"
|
2020-04-19 18:47:14 +00:00
|
|
|
environment:
|
|
|
|
# REQUIRED for all types
|
|
|
|
EULA: "TRUE"
|
|
|
|
# Set server type (vs the default of vanilla)
|
2020-05-31 23:46:17 +00:00
|
|
|
TYPE: FORGE
|
2021-10-17 03:32:34 +00:00
|
|
|
DEBUG: "true"
|
2020-04-19 18:47:14 +00:00
|
|
|
volumes:
|
|
|
|
# use a named, managed volume for data volume
|
2020-05-31 23:46:17 +00:00
|
|
|
- mc_forge:/data
|
|
|
|
# attach local host directory "mods" in same directory as this compose file
|
|
|
|
# all mods in this directory get copied into /data/mods at startup
|
|
|
|
- ./mods:/mods:ro
|
2020-04-19 18:47:14 +00:00
|
|
|
|
|
|
|
volumes:
|
|
|
|
# declared the named volume, but use default/local storage engine
|
2020-05-31 23:46:17 +00:00
|
|
|
mc_forge: {}
|