truncate history
This commit is contained in:
commit
05e33df22c
2 changed files with 38 additions and 0 deletions
13
Dockerfile
Normal file
13
Dockerfile
Normal file
|
@ -0,0 +1,13 @@
|
|||
FROM zombi/steam-base
|
||||
MAINTAINER MadMaurice <madmaurice@zom.bi>
|
||||
EXPOSE 27015/udp
|
||||
|
||||
RUN /opt/steamcmd/steamcmd.sh +login anonymous +force_install_dir /home/steam/insurgency +app_update 237410 validate +quit &&\
|
||||
chown -R steam /home/steam/insurgency
|
||||
|
||||
WORKDIR /home/steam/insurgency
|
||||
|
||||
USER steam
|
||||
|
||||
ENTRYPOINT ["./srcds_run", "-game", "insurgency"]
|
||||
CMD ["-console", "+mapgroup", "mg_active", "+map", "ministry", "+maxplayers", "8", "+mapcyclefile","mapcycle_cooperative.txt"]
|
25
README.md
Normal file
25
README.md
Normal file
|
@ -0,0 +1,25 @@
|
|||
## steam-insurgency
|
||||
steam-insurgency is the base image for an "Insurgency" server
|
||||
|
||||
### Building steam-insurgency
|
||||
|
||||
first build the `steam-base` image.
|
||||
|
||||
```
|
||||
docker build -t zombi/steam-insurgency .
|
||||
```
|
||||
|
||||
### Running steam-insurgency
|
||||
|
||||
```
|
||||
docker run -d \
|
||||
--name insurgency-1 \
|
||||
-p 27015:27015/udp \
|
||||
-p 27015:27015 \
|
||||
zombi/steam-insurgency -console +mapgroup mg_active +map ministry \
|
||||
+maxplayers 8 +mapcyclefile mapcycle_cooperative.txt
|
||||
```
|
||||
|
||||
to start up a simple server to drive out some infidels.
|
||||
|
||||
a password can be set with `+sv_password password`
|
Loading…
Reference in a new issue