Added top-level docker compose file (#1628)

This commit is contained in:
Geoff Bourne
2022-07-24 21:26:34 -05:00
committed by GitHub
parent e70525b2ff
commit c5d4e4d8ca

16
docker-compose.yml Normal file
View File

@@ -0,0 +1,16 @@
version: "3.8"
services:
mc:
image: itzg/minecraft-server
environment:
EULA: "true"
ports:
- "25565:25565"
volumes:
- data:/data
stdin_open: true
tty: true
restart: unless-stopped
volumes:
data: {}