itzg / docker-minecraft-bedrock-server

Containerized Minecraft Bedrock Dedicated Server with selectable version
MIT License
1.12k stars 210 forks source link

Starting Bedrock server... crushing #225

Open kbartczakpl opened 2 years ago

kbartczakpl commented 2 years ago

yaml:

 bds:
    image: itzg/minecraft-bedrock-server
    container_name: mine-bds
    environment:
      EULA: "TRUE"
      GAMEMODE: survival
      DIFFICULTY: normal
    ports:
      - 19132:19132/udp
    volumes:
      - /media/docker/minecraft/bds:/data
    stdin_open: true
    tty: true

logs:

DEBU[0000] Using /data to match uid and gid
DEBU[0000] Resolved UID=1000 from match path
DEBU[0000] Resolved GID=1000 from match path
Looking up latest version...
Starting Bedrock server...
/opt/bedrock-entry.sh: line 163: /data/bedrock_server-1.18.12.01: Permission denied

any suggestions?

itzg commented 2 years ago

You'll need to remove the noexec mount option on the host side from the volume where /media/docker/minecraft/bds is located.