Skip to content

indifferentbroccoli/humanitz-server-docker

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

marketing_assets_banner GitHub License GitHub Release GitHub Repo stars Discord Docker Pulls

Game server hosting

Fast RAM, high-speed internet

Eat lag for breakfast

Try our HumanitZ server hosting free for 2 days!

HumanitZ Dedicated Server Docker

A Docker container for running a HumanitZ dedicated server using DepotDownloader.

Server Requirements

Resource Minimum Recommended
CPU 2 cores 4+ cores
RAM 4GB 8GB
Storage 10GB 20GB

How to use

Copy the .env.example file to a new file called .env. Then use either docker compose or docker run.

Docker Compose

services:
  humanitz:
    image: indifferentbroccoli/humanitz-server-docker
    restart: unless-stopped
    container_name: humanitz
    stop_grace_period: 30s
    ports:
      - 7777:7777/udp
      - 27015:27015/udp
    env_file:
      - .env
    volumes:
      - ./server-files:/home/steam/server-files

Then run:

docker compose up -d

Docker Run

docker run -d \
    --restart unless-stopped \
    --name humanitz \
    --stop-timeout 30 \
    -p 7777:7777/udp \
    -p 27015:27015/udp \
    --env-file .env \
    -v ./server-files:/home/steam/server-files \
    indifferentbroccoli/humanitz-server-docker

Environment Variables

Variable Default Info
PUID 1000 User ID for file permissions
PGID 1000 Group ID for file permissions
UPDATE_ON_START true Set to false to skip downloading and validating server files on startup
PORT 7777 UDP port the server listens on
QUERY_PORT 27015 UDP port for Steam server browser queries

Note

All other game settings (server name, password, max players, loot, zombies, PVP, etc.) are configured directly in server-files/HumanitZServer/GameServerSettings.ini.

Port Forwarding

Forward these ports through your firewall/router:

Port Protocol Purpose
7777 UDP Game traffic
27015 UDP Steam server browser

See portforward.com for router-specific guides.

Volumes

  • /home/steam/server-files — Server installation files, saves, and configuration

About

This is a Dockerized version of the Humantiz dedicated server.

Resources

License

Stars

Watchers

Forks

Packages