-
This Question seems really dumb to ask since I can't find an answer so I assume its just very simple to do. But I am new to minecraft server hosting in general. Here's the issue:- I am trying to get a Skyblock Minecraft server up and running so my friends and I can play together. I am using docker compose and the image from But as soon I try to ass the skyblock map files from Skyblock-1.20-Map it all just stops working. (Log Attached below) I am sure its either a folder hierarchy issue or I just don't understand the yaml file or probably both so any help is appreciated. The Folder Structure is attached as well. P.S. I tried putting the map under a world folder but that didnt work. The Docker Compose File: (minecraftdata is a premade docker volume.) version: "3.8" services: mc: image: itzg/minecraft-server volumes:
tty: true stdin_open: true ports:
environment: EULA: "TRUE" volumes: minecraftdata: external: true |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 2 replies
-
There are a couple of things wrong with volume entry
Instead make use of https://docker-minecraft-server.readthedocs.io/en/latest/misc/world-data/#cloning-world-from-a-container-path |
Beta Was this translation helpful? Give feedback.
-
Hi sorry been working away at this. I was able to find examples/docker-compose-world-download which seems to be perfect except using the file does not seem to make any changes.
|
Beta Was this translation helpful? Give feedback.
I have got the server working on my local network. The docker-compose.yml looks like this
version: "3.8"
services:
mc:
image: itzg/minecraft-server
volumes:
- minecraftdata:/data
tty: true
stdin_open: true
ports:
- "25565:25565"
environment:
EULA: "TRUE"
VERSION: "1.20.1"
MEMORY: "5G"
volumes:
minecraftdata:
external: true
I had to restart the container and remove the docker volume and m…