Replies: 4 comments 8 replies
-
|
Beta Was this translation helpful? Give feedback.
-
Thanks, I tried this code: docker run -d Note: I realized that I previously mounted the /data and the /datapacks folder to the same host folder (overloading), and copyied the datapacks folder leading to error that same files exists, Error: Paths to datapack files in host folder: Do I have to change file permissions? I am running docker as admin, so I would have guessed that this should work fine. How do I fix this ? |
Beta Was this translation helpful? Give feedback.
-
Ok, so long story short if I run the docker minecraft server first to create the folder structure and manually copy the datapacks zip files into the host folder ./world/datapacks/, they will be loaded automagically and additional DATAPACKS volumes or flags will cause errors. Please add this to the documentation! |
Beta Was this translation helpful? Give feedback.
-
Ok, so finally I have successfully started the minecraft docker image and enabled the datapacks with the following command: Note: Every line should end with a backslash for the command line to see it as one command. The backslashes are not displayed here for some reason. I had to set myself to OPerator/admin to be able to access the /datapack commands. Thanks! You are hero for providing this docker image!! Great job! |
Beta Was this translation helpful? Give feedback.
-
Hi, I am running the following itzg/minecraft-server on a QNAP TS-653A (QTS5) NAS using docker:
docker run -d
-e MEMORY=2G
-p 25565:25565
-e EULA=TRUE
-v /share/homes/wiligl/minecraft/MC_V1.19.3_DP/:/data
-v /share/homes/wiligl/minecraft/MC_V1.19.3_DP/world/datapacks/:/datapacks
--restart always
--name NAS_MC_V1.19.3_DP itzg/minecraft-server
I have copied three datapacks (eg life-steal-free-e700.zip, bucketable-v2-3-data-pack.zip, galaxium-tools-armor-dp.zip) into the /datapacks/ folder on the host system, but if I start the server the datapacks are not found or loaded. Minecraft works but only as a standard VANILLA server.
The commands /reload or /datapacks list are not avaible.
How can I load and enable the datapacks?
Kr, Will
Beta Was this translation helpful? Give feedback.
All reactions