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