mirror of
https://github.com/itzg/docker-minecraft-server
synced 2024-11-10 14:24:28 +00:00
20 lines
400 B
YAML
20 lines
400 B
YAML
version: "3"
|
|
|
|
services:
|
|
mc:
|
|
# Only using IMAGE variable to allow for local testing
|
|
image: itzg/minecraft-server
|
|
# image: ${IMAGE:-itzg/minecraft-server}
|
|
ports:
|
|
- "25565:25565"
|
|
environment:
|
|
EULA: "TRUE"
|
|
TYPE: SPIGOT
|
|
# SPIGET_RESOURCES: 34315,3836
|
|
SPIGET_RESOURCES: ""
|
|
REMOVE_OLD_MODS: "true"
|
|
volumes:
|
|
- data:/data
|
|
|
|
volumes:
|
|
data: {}
|