mirror of
https://github.com/itzg/docker-minecraft-server
synced 2025-01-10 11:18:43 +00:00
15 lines
314 B
YAML
15 lines
314 B
YAML
|
version: "3.8"
|
||
|
|
||
|
services:
|
||
|
monitor:
|
||
|
depends_on:
|
||
|
- mc
|
||
|
image: itzg/mc-monitor:${MC_MONITOR_VERSION:-0.10.4}
|
||
|
command: status --host mc --retry-interval 1s --timeout 1s --retry-limit 240
|
||
|
mc:
|
||
|
restart: "no"
|
||
|
image: ${IMAGE_TO_TEST:-itzg/minecraft-server}
|
||
|
environment:
|
||
|
EULA: "TRUE"
|
||
|
|