-
Notifications
You must be signed in to change notification settings - Fork 21
/
docker-compose.yml
55 lines (48 loc) · 1.71 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
49
50
51
52
53
54
55
# version: "3"
services:
vrising:
# image: didstopia/vrising-server:latest
build: .
container_name: vrising
# restart: unless-stopped
restart: "no"
environment:
# Configure the server
V_RISING_SERVER_PERSISTENT_DATA_PATH: "/app/vrising"
V_RISING_SERVER_BRANCH: "public"
# V_RISING_SERVER_START_MODE: "0" # Install/update and start server
# V_RISING_SERVER_START_MODE: "1" # Install/update and exit
V_RISING_SERVER_START_MODE: "2" # Install, skip update check and start server
V_RISING_SERVER_UPDATE_MODE: "1" # Enable update checking
# Customize the server
V_RISING_SERVER_NAME: "V Rising Docker Test Server"
V_RISING_SERVER_DESCRIPTION: "Test server."
V_RISING_SERVER_GAME_PORT: 9876
V_RISING_SERVER_QUERY_PORT: 9877
V_RISING_SERVER_RCON_PORT: 9878
V_RISING_SERVER_RCON_ENABLED: true
V_RISING_SERVER_RCON_PASSWORD: "rc0n"
V_RISING_SERVER_MAX_CONNECTED_USERS: 1
V_RISING_SERVER_MAX_CONNECTED_ADMINS: 1
V_RISING_SERVER_SAVE_NAME: "test_server"
V_RISING_SERVER_PASSWORD: "t35t"
V_RISING_SERVER_LIST_ON_MASTER_SERVER: false
V_RISING_SERVER_LIST_ON_STEAM: false
V_RISING_SERVER_LIST_ON_EOS: false
V_RISING_SERVER_AUTO_SAVE_COUNT: 5
V_RISING_SERVER_AUTO_SAVE_INTERVAL: 10
V_RISING_SERVER_GAME_SETTINGS_PRESET: "StandardPvE"
ports:
- "9876:9876/udp"
- "9877:9877/udp"
- "9878:9878/tcp"
volumes:
- ./vrising_saves:/app/vrising
- ./vrising_data:/steamcmd/vrising
# - vrising_saves:/app/vrising_test
# - vrising_data:/steamcmd/vrising
# volumes:
# vrising_saves:
# driver: local
# vrising_data:
# driver: local