Replies: 1 comment 3 replies
-
There's also an option to download individual mods via CurseForge https://docker-minecraft-server.readthedocs.io/en/latest/mods-and-plugins/curseforge-files/ or Modrinth https://docker-minecraft-server.readthedocs.io/en/latest/mods-and-plugins/modrinth/ |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
i am pretty new to docker and linux and I have been trying to download mods on to my server for the last 24 hours and nothing has worked i want to download one mod at a time and not use modpacks i tried auto curseforge and figured out that it only works for modpacks so i tried to use the Mods/Plugins list and listing file and still have not been able to get anything done any help is appreciated.
Here are the contents of my docker compose file
services:
mc:
image: itzg/minecraft-server
tty: true
stdin_open: true
ports:
- "25565:25565"
environment:
EULA: "TRUE"
TYPE: FORGE
MODS_FILE: /extras/mods.txt
VERSION: 1.20.1
DIFFICULTY: "normal"
OPS: "r5vols"
volumes:
# attach the relative directory 'data' to the container's /data path
- ./data:/data
- ./mods.txt:/extras/mods.txt:ro
Beta Was this translation helpful? Give feedback.
All reactions