Tech News
← Back to articles

Roots is a game server daemon that manages Docker containers for game servers

read original related products more articles

Roots

Roots is a game server daemon that manages Docker containers for game servers. It provides an HTTP/HTTPS API for server management, real-time console access via WebSocket, and SFTP file access.

Building

# Build the binary make build # Or manually go build -o roots ./cmd/roots # Build with version info from git make build-release # Install to /usr/local/bin sudo make install

Configuration

Roots looks for configuration at /etc/roots/config.yaml by default. You can specify an alternative path with the --config flag.

Interactive Setup

roots configure

This will prompt you for the essential settings and create the config file.

Configuration File Format

... continue reading