Autostop feature (#1212)

This commit is contained in:
Michael Kirsch
2021-12-21 01:27:27 +01:00
committed by GitHub
parent c15e231d7e
commit fa4a0e92ce
8 changed files with 172 additions and 2 deletions

View File

@@ -0,0 +1,20 @@
version: '3.8'
services:
minecraft:
image: itzg/minecraft-server
ports:
- "25565:25565"
volumes:
- "mc:/data"
environment:
EULA: "TRUE"
ENABLE_AUTOSTOP: "TRUE"
# More aggressive settings for demo purposes
AUTOSTOP_TIMEOUT_INIT: "30"
AUTOSTOP_TIMEOUT_EST: "20"
# Important not to auto-restart the server!!!
restart: "no"
volumes:
mc: {}