This commit is contained in:
parent
de2394bdc3
commit
7d03f08cdf
5 changed files with 26 additions and 0 deletions
2
.gitignore
vendored
2
.gitignore
vendored
|
|
@ -91,6 +91,8 @@ hs_err_pid*
|
||||||
#vscode settings
|
#vscode settings
|
||||||
.vscode/
|
.vscode/
|
||||||
|
|
||||||
|
server.env
|
||||||
|
|
||||||
app
|
app
|
||||||
db
|
db
|
||||||
node_modules
|
node_modules
|
||||||
15
compose.yml
Normal file
15
compose.yml
Normal file
|
|
@ -0,0 +1,15 @@
|
||||||
|
services:
|
||||||
|
sandstorm:
|
||||||
|
image: andrewmhub/insurgency-sandstorm:latest
|
||||||
|
container_name: sandstorm
|
||||||
|
restart: "no"
|
||||||
|
env_file:
|
||||||
|
- server.env
|
||||||
|
volumes:
|
||||||
|
- ./server-config/MapCycle.txt:/home/steam/steamcmd/sandstorm/Insurgency/Config/Server/MapCycle.txt:ro
|
||||||
|
- ./server-config/Game.ini:/home/steam/steamcmd/sandstorm/Insurgency/Saved/Config/LinuxServer/Game.ini:ro
|
||||||
|
ports:
|
||||||
|
- "192.168.1.112:10128:10128/udp"
|
||||||
|
- "192.168.1.112:10128:10128/tcp"
|
||||||
|
- "192.168.1.112:10142:10142/udp"
|
||||||
|
- "192.168.1.112:10142:10142/tcp"
|
||||||
|
|
@ -29,6 +29,7 @@ MaxSpectators=0
|
||||||
[/Script/Insurgency.INSCoopMode]
|
[/Script/Insurgency.INSCoopMode]
|
||||||
MinimumEnemies=3
|
MinimumEnemies=3
|
||||||
MaximumEnemies=24
|
MaximumEnemies=24
|
||||||
|
EnemyBotDifficulty=0.7
|
||||||
|
|
||||||
MaxPlayersToScaleEnemyCount=10
|
MaxPlayersToScaleEnemyCount=10
|
||||||
bBotsUseHumanLoadouts=False
|
bBotsUseHumanLoadouts=False
|
||||||
|
|
|
||||||
3
server-config/Game.ini
Normal file
3
server-config/Game.ini
Normal file
|
|
@ -0,0 +1,3 @@
|
||||||
|
[/Script/Insurgency.INSMultiplayerMode]
|
||||||
|
bUseMapCycle=True
|
||||||
|
bMapVoting=True
|
||||||
5
server-config/MapCycle.txt
Normal file
5
server-config/MapCycle.txt
Normal file
|
|
@ -0,0 +1,5 @@
|
||||||
|
Scenario_Gap_Survival
|
||||||
|
Scenario_Forest_Survival
|
||||||
|
Scenario_Gap_Outpost
|
||||||
|
Scenario_Bab_Survival
|
||||||
|
Scenario_Bab_Outpost
|
||||||
Loading…
Reference in a new issue