#Self hosted issues

3 messages · Page 1 of 1 (latest)

urban sleet
#

Hello, i'm trying to run BCG cobblemon modpack in docker and got a lot of errors, here is my docker-compose.yml:

services:
  mc:
    image: itzg/minecraft-server
    environment:
      EULA: "true"
      MEMORY: "2G"
      MAX_MEMORY: "12G"
      TZ: Europe\Moscow
      ONLINE_MODE: False
      VERSION: "1.20.1"
      TYPE: FABRIC
      OVERRIDE_SERVER_PROPERTIES: true
    ports:
      - "25565:25565"
      - "25575:25575"
    volumes:
      - ./data:/data
    stdin_open: true
    tty: true
    restart: unless-stopped

I downloaded server modpack from curseforge and put mods and config dirs from it to minecraft server data folder (already used this method with other modpacks, it works). When i type docker compose up i see some X11 and mod loading erros. It seeems strange for me because i run headless server and i don't know why do we need X11 on the server side

simple meteor
#

Hey! having the same issue as you

#

Add this to your environment in the docker-compose.yml file

    CF_IGNORE_MISSING_FILES: |
      mods/fasterrandom-4.1.0.jar```

And then delete fasterrandom-4.1.0.jar from the mods directory in your data directory