Introduction

Production-ready Docker container for Hytale dedicated servers

Hytale Docker Server

Production-ready Docker container for Hytale dedicated servers

Automated authentication • Auto-updates • CurseForge mods • Secure by default


What is Hytale Docker?

Hytale Docker is a production-ready containerized solution for running Hytale dedicated servers. It handles authentication, updates, and mod management so you can focus on playing.

Documentation

Key Features

FeatureDescription
One-command startupJust docker compose up, authenticate once, play forever
OAuth2 AuthenticationDevice code flow with 30-day persistent tokens
Auto-updatesOptional automatic server updates on restart
CurseForge & Modtale ModsAuto-sync mods with CF_MODS and MT_MODS environment variables
Unified CLISingle hytale command for auth, updates, mods, and server commands
Secure by defaultNon-root user, dropped capabilities, hardened container
Fast bootAOT cache support for quicker startup
Persistent dataWorlds, tokens, and mods survive restarts

Quick Example

services:
  hytale:
    image: rxmarin/hytale-docker:latest
    container_name: hytale-server
    restart: unless-stopped
    stdin_open: true
    tty: true
    ports:
      - "5520:5520/udp"
    environment:
      JAVA_OPTS: "-Xms4G -Xmx8G"
      AUTO_UPDATE: "true"
    volumes:
      - hytale-data:/server

volumes:
  hytale-data:
docker compose up -d
docker compose logs -f  # Watch for auth prompt

Need Help?

On this page