How to access terminal for the server? #3456
Unanswered
Rubyzillaaa
asked this question in
Q&A
Replies: 1 comment
-
Make sure to search the docs. Everything you need to know is there. To declare op'ed players To send commands otherwise https://docker-minecraft-server.readthedocs.io/en/latest/commands/ |
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 finally have my server up, I am able to connect to it and it plays perfectly fine. However, I am not finding a normal terminal that's used for servers so I can OP users, kick them, whitelist, etc. Did I miss a crucial part of the setup? How can I remedy this? This is what I'm working with minus the mods, I'm running this docker on a nas.
Generated by setupmc.com on 2025-05-17T22:35:18.197Z
services:
mc:
image: itzg/minecraft-server:java17
tty: true
stdin_open: true
ports:
- "25565:25565"
environment:
EULA: "TRUE"
TYPE: "AUTO_CURSEFORGE"
VERSION: "1.18.2"
CF_PAGE_URL: "https://www.curseforge.com/minecraft/modpacks/immersed-with-shaders/fi\
les/4858341"
CF_API_KEY: "$$2a$$10$$IfRa4u3aYyfC29553L/gxupiGHiG4.1bX6xJz8OgPWaxLcR9xKSjq"
MEMORY: "61440M"
MAX_PLAYERS: "25"
TZ: "America/New_York"
DIFFICULTY: "2"
ENABLE_COMMAND_BLOCK: "true"
VIEW_DISTANCE: "15"
LEVEL: "EGUMC"
volumes:
- "./data:/data"
Beta Was this translation helpful? Give feedback.
All reactions