Game server hosting — Fast RAM, high-speed internet — Eat lag for breakfast
Try our Conan Exiles server hosting free for 2 days!
A Docker container for running a Conan Exiles Enhanced dedicated server using DepotDownloader.
Conan Exiles Enhanced is the Unreal Engine 5 upgrade of Conan Exiles, with stunning visuals and improved performance.
| Resource | Minimum | Recommended |
|---|---|---|
| CPU | 2 cores | 4+ cores |
| RAM | 8GB | 16GB |
| Storage | 25GB | 50GB |
Copy the .env.example file to a new file called .env. Then use either docker compose or docker run.
services:
conan-exiles-enhanced:
image: indifferentbroccoli/conan-exiles-enhanced-server-docker
restart: unless-stopped
container_name: conan-exiles-enhanced
stop_grace_period: 30s
ports:
- 7777:7777/udp
- 7778:7778/udp
- 27015:27015/udp
- 25575:25575/tcp
env_file:
- .env
volumes:
- ./server-files:/home/steam/server-filesThen run:
docker compose up -ddocker run -d \
--restart unless-stopped \
--name conan-exiles-enhanced \
--stop-timeout 30 \
-p 7777:7777/udp \
-p 7778:7778/udp \
-p 27015:27015/udp \
-p 25575:25575/tcp \
--env-file .env \
-v ./server-files:/home/steam/server-files \
indifferentbroccoli/conan-exiles-enhanced-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 (pinger port is always PORT+1) |
| QUERY_PORT | 27015 | UDP port for Steam server browser queries |
| RCON_PORT | 25575 | TCP port for RCON |
| MAX_PLAYERS | 40 | Maximum number of players allowed on the server |
| SERVER_NAME | Conan Exiles Enhanced Server | Name shown in the server browser |
| SERVER_PASSWORD | Leave blank for a public server | |
| RCON_PASSWORD | Password for RCON connections | |
| ADMIN_PASSWORD | Server admin password | |
| MODS | Comma-separated Steam Workshop mod IDs (e.g. 880454836,1159180273) |
Forward these ports through your firewall/router:
| Port | Protocol | Purpose |
|---|---|---|
| 7777 | UDP | Game traffic |
| 7778 | UDP | Pinger port (always PORT+1) |
| 27015 | UDP | Steam server browser |
| 25575 | TCP | RCON |
See portforward.com for router-specific guides.
/home/steam/server-files— Server installation files, saves, and configuration
