Skip to content

Failed to varify username #50

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
TonySerpofski opened this issue Apr 7, 2025 · 0 comments
Open

Failed to varify username #50

TonySerpofski opened this issue Apr 7, 2025 · 0 comments
Assignees

Comments

@TonySerpofski
Copy link

TonySerpofski commented Apr 7, 2025

Ive added ONLINE_MODE: "FALSE" which normally does the trick but its not working. I cant join the server thats running.

services:
  minecraft:
    image: 05jchambers/legendary-minecraft-geyser-floodgate:latest
    container_name: minecraft-server
    environment:
      EULA: "TRUE"  # Accept the Minecraft EULA
      TYPE: "PAPER"  # Use Paper for better performance and plugin support
      # You can set other environment variables if necessary:
      # - MaxMemory: "2048"  # Optional: Set the max memory in MB
      # - Version: "1.17.1"  # Optional: Specify the Minecraft version
      # - TZ: "America/Denver"  # Optional: Set the timezone
      # - BackupCount: "20"  # Optional: Set the number of backups retained
      # - QuietCurl: "Y"  # Optional: Suppress curl output     
      ONLINE_MODE: "FALSE"

    ports:
      - "25565:25565"  # Java Edition port
      - "19132:19132/udp"  # Bedrock Edition port (UDP)
      - "19132:19132"  # Bedrock Edition port (TCP)
    volumes:
      - minecraft_data:/minecraft  # Mount Docker volume for persistent data
    restart: unless-stopped
    networks:
      - minecraft_net

volumes:
  minecraft_data:  # Named volume to persist server data
    driver: local

networks:
  minecraft_net:  # Create a custom network for the server
    driver: bridge
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants