docker-minecraft-bedrock-server icon indicating copy to clipboard operation
docker-minecraft-bedrock-server copied to clipboard

Starting Bedrock server... crushing

Open kbartczakpl opened this issue 3 years ago • 1 comments

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?

kbartczakpl avatar Mar 08 '22 21:03 kbartczakpl

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

itzg avatar Mar 09 '22 14:03 itzg