-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
executable file
·48 lines (46 loc) · 2.23 KB
/
docker-compose.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
services:
dust2cs16:
build: .
environment:
PV_PORT: 7777
network_mode: host
ports:
- "7777:7777" # Have no effect since network mode is host, but it is still good to keep this
- "8177:8177" # Have no effect since network mode is host, but it is still good to keep this
- "9100:9100" # Have no effect since network mode is host, but it is still good to keep this
volumes:
- ./mods_dust2cs16:/home/steam/pavlovserver/Pavlov/Saved/Mods
- ./dust2cs16.ini:/home/steam/pavlovserver/Pavlov/Saved/Config/LinuxServer/Game.ini
- ./RconSettings_1.txt:/home/steam/pavlovserver/Pavlov/Saved/Config/RconSettings.txt
- ./mods.txt:/home/steam/pavlovserver/Pavlov/Saved/Config/mods.txt:ro
restart: unless-stopped
dust2csgo:
build: .
environment:
PV_PORT: 7778
network_mode: host
ports:
- "7778:7778" # Have no effect since network mode is host, but it is still good to keep this
- "8178:8178" # Have no effect since network mode is host, but it is still good to keep this
- "9101:9101" # Have no effect since network mode is host, but it is still good to keep this
volumes:
- ./mods_dust2csgo:/home/steam/pavlovserver/Pavlov/Saved/Mods
- ./dust2csgo.ini:/home/steam/pavlovserver/Pavlov/Saved/Config/LinuxServer/Game.ini
- ./RconSettings_2.txt:/home/steam/pavlovserver/Pavlov/Saved/Config/RconSettings.txt
- ./mods.txt:/home/steam/pavlovserver/Pavlov/Saved/Config/mods.txt:ro
restart: unless-stopped
office:
build: .
environment:
PV_PORT: 7779
network_mode: host
ports:
- "7779:7779" # Have no effect since network mode is host, but it is still good to keep this
- "8179:8179" # Have no effect since network mode is host, but it is still good to keep this
- "9102:9102" # Have no effect since network mode is host, but it is still good to keep this
volumes:
- ./mods_office:/home/steam/pavlovserver/Pavlov/Saved/Mods
- ./office.ini:/home/steam/pavlovserver/Pavlov/Saved/Config/LinuxServer/Game.ini
- ./RconSettings_3.txt:/home/steam/pavlovserver/Pavlov/Saved/Config/RconSettings.txt
- ./mods.txt:/home/steam/pavlovserver/Pavlov/Saved/Config/mods.txt:ro
restart: unless-stopped