Files
docker-minecraft-server/examples/docker-compose-simple.yml
2023-02-02 21:05:54 -06:00

15 lines
278 B
YAML

version: "3.8"
services:
mc:
image: itzg/minecraft-server
tty: true
stdin_open: true
ports:
- "25565:25565"
environment:
EULA: "TRUE"
volumes:
# attach the relative directory 'data' to the container's /data path
- ./data:/data