Replies: 1 comment
-
Several ways to access console to send commands https://docker-minecraft-server.readthedocs.io/en/latest/commands/ I'm not sure what you mean with your last question. You're setting them with correct values (true or false) but I don't know what you're expecting. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I am running the Bedrock compatible server in a docker project. It works wonderfully but the issue I'm having is that I am unable to access the terminal to issue any commands. Looking at the logs it states that "WARM StatusConsoleListener Advanced terminal features are not available in this environment." Is this a issue because i am running the Bedrock Compatible Server? Or am i doing something wrong. It was working before but not anymore. The YAML Configuration i am using is
services:
mc:
image: itzg/minecraft-server
environment:
EULA: "true"
TYPE: "PAPER"
PAPER_CHANNEL: experimental
ENABLE_AUTOPAUSE: TRUE
AUTOPAUSE_TIMEOUT_EST: 1800
ONLINE_MODE: TRUE
MAX_MEMORY: 1G
SERVER_NAME: vncnt DS1522
PLUGINS: |
https://download.geysermc.org/v2/projects/geyser/versions/latest/builds/latest/downloads/spigot
https://download.geysermc.org/v2/projects/floodgate/versions/latest/builds/latest/downloads/spigot
ports:
- "25565:25565"
- "19132:19132/udp"
volumes:
- ./data:/data
Beta Was this translation helpful? Give feedback.
All reactions