mirror of
https://github.com/itzg/docker-minecraft-server.git
synced 2024-06-07 19:40:43 +00:00
19 lines
310 B
YAML
19 lines
310 B
YAML
|
version: '3.8'
|
||
|
|
||
|
services:
|
||
|
minecraft:
|
||
|
image: itzg/minecraft-server
|
||
|
ports:
|
||
|
- "25565:25565"
|
||
|
volumes:
|
||
|
- "mc:/data"
|
||
|
environment:
|
||
|
EULA: "TRUE"
|
||
|
ENABLE_AUTOPAUSE: "TRUE"
|
||
|
OVERRIDE_SERVER_PROPERTIES: "TRUE"
|
||
|
MAX_TICK_TIME: "-1"
|
||
|
restart: always
|
||
|
|
||
|
volumes:
|
||
|
mc: {}
|