Minecraft-Docker/docker-compose.yml

24 lines
608 B
YAML
Raw Normal View History

2024-08-11 13:18:57 -04:00
services:
mc:
image: itzg/minecraft-server
tty: true
stdin_open: true
ports:
- "25565:25565"
environment:
2024-08-11 22:09:11 -04:00
TYPE: NEOFORGE
2024-08-11 13:18:57 -04:00
VERSION: 1.21.1
CF_API_KEY: $$2a$$10$$PXDF1/P0jGG5E4wQIFPNOuih1U5DBaL00hYx5oBXTFjXC7/mcAnbi
CURSEFORGE_FILES: |
2024-08-11 22:09:11 -04:00
https://www.curseforge.com/minecraft/mc-mods/storage-drawers/files/5610020
2024-08-11 21:54:17 -04:00
2024-08-11 13:18:57 -04:00
EULA: "TRUE"
OPS: |
xSghetti
MOTD: "Welcome Bitches!"
DEBUG: true
volumes:
# attach the relative directory 'data' to the container's /data path
- ./data:/data
2024-08-11 21:54:17 -04:00
restart: on-failure:3