I am making a Minecraft server on a Raspberry Pi 4 (Model B) but the server won’t start up
here is a picture of the console
If anybody could help I would greatly appreciate it.
I am making a Minecraft server on a Raspberry Pi 4 (Model B) but the server won’t start up
here is a picture of the console
If anybody could help I would greatly appreciate it.
Based on the last message before the service exited, it looks like you need to Download Java 17. Can you post your Dockerfile here?
Here is my Docker Compose File
version: ‘2.1’
volumes:
servercache: {}
serverfiles: {}
services:
mc-server:
build:
context: ./mc-server
ports:
- 25565:25565/udp
- 25565:25565/tcp
- 25575:25575/udp
- 25575:25575/tcp
labels:
io.balena.features.dbus: ‘1’
io.balena.features.supervisor-api: ‘1’
restart: always
volumes:
- serverfiles:/usr/src/serverfiles
- servercache:/servercache
privileged: true
network_mode: host
scp-server:
build:
context: ./scp-server
ports:
- 22:22/udp
- 22:22/tcp
labels:
io.balena.features.dbus: ‘1’
restart: always
volumes:
- serverfiles:/serverfiles
- servercache:/servercache
privileged: false
network_mode: host
balena-rcon:
build:
context: ./balena-rcon
ports:
- 25575:25575/udp
- 25575:25575/tcp
restart: always
privileged: true
network_mode: host
wifi-connect:
build:
context: ./wifi-connect
labels:
io.balena.features.dbus: ‘1’
io.balena.features.firmware: ‘1’
restart: always
privileged: true
network_mode: host
Hello, can you post the Dockerfile in the ./mc-server folder?