forked from TrueOsiris/docker-vrising
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
29 lines (28 loc) · 809 Bytes
/
docker-compose.yml
File metadata and controls
29 lines (28 loc) · 809 Bytes
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
services:
vrising:
image: trueosiris/vrising
build:
args:
STEAM_USER_UID: 1000
STEAM_USER_GID: 1000
environment:
- HOST_SETTINGS_NAME=My Docker-Compose V-Rising Server
- HOST_SETTINGS_DESCRIPTION=V Rising Server hosted by Docker
- HOST_SETTINGS_PASSWORD=supersecret
- HOST_SETTINGS_MAX_CONNECTED_USERS=20
volumes:
- type: bind
source: /your/host/vrising/server
target: /home/steam/vrising/server
bind:
create_host_path: true
- type: bind
source: /your/host/vrising/persistentdata
target: /home/steam/vrising/persistentdata
bind:
create_host_path: true
ports:
- '9876:9876/udp'
- '9877:9877/udp'
restart: unless-stopped
network_mode: bridge