-
-
Notifications
You must be signed in to change notification settings - Fork 274
Description
I am aware there are other issues about this, and I have tried al the options.
I'm running a the server on a docker container and using docker compose, my compose script is listed below:
version: "3"
services:
bedrock:
image: itzg/minecraft-bedrock-server
container_name: minecraft-bds
ports:
- "19132:19132/udp"
volumes:
- ./data:/data
environment:
EULA: "TRUE"
tty: true
stdin_open: true
restart: unless-stopped
dns:
- 1.1.1.1
I can access the console via SSH, but this is inconvenient as I have to type in my admin password every time. Usually on the first run the built in termina works, but then afterward it doesn't. It will work if I reset the device its running on however. I'm not too sure what I'm doing wrong, its obviously not shutting down correctly or something.
