Game server hosting
Fast RAM, high-speed internet
Eat lag for breakfast
Try our HumanitZ server hosting free for 2 days!
A Docker container for running a HumanitZ dedicated server using DepotDownloader.
| Resource | Minimum | Recommended |
|---|---|---|
| CPU | 2 cores | 4+ cores |
| RAM | 4GB | 8GB |
| Storage | 10GB | 20GB |
Copy the .env.example file to a new file called .env. Then use either docker compose or docker run.
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-filesThen run:
docker compose up -ddocker 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| 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.
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.
/home/steam/server-files— Server installation files, saves, and configuration
