mirror of
https://github.com/itzg/docker-minecraft-server.git
synced 2024-06-07 19:40:43 +00:00
18 lines
311 B
YAML
18 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: {}
|