mirror of
https://github.com/itzg/docker-minecraft-server
synced 2024-12-14 22:32:28 +00:00
19 lines
503 B
YAML
19 lines
503 B
YAML
version: "3"
|
|
|
|
services:
|
|
monitor:
|
|
depends_on:
|
|
- mc
|
|
image: ${IMAGE_TO_TEST:-itzg/minecraft-server}
|
|
entrypoint: mc-monitor
|
|
command: status --host mc --retry-interval 1s --timeout 1s --retry-limit 60
|
|
mc:
|
|
restart: "no"
|
|
image: ${IMAGE_TO_TEST:-itzg/minecraft-server}
|
|
environment:
|
|
EULA: "TRUE"
|
|
VERSION: ${MINECRAFT_VERSION:-LATEST}
|
|
TYPE: PAPER
|
|
# regression tests https://github.com/itzg/docker-minecraft-server/issues/2545
|
|
MOTD: "Foo§rBar"
|
|
|