forked from wine-gameservers/arch-wine-fs22
-
Notifications
You must be signed in to change notification settings - Fork 0
/
dockerrun_example.sh
executable file
·29 lines (29 loc) · 1022 Bytes
/
dockerrun_example.sh
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
docker run -d \
--name arch-wine-fs22 \
-p 5900:5900/tcp \
-p 8080:8080/tcp \
-p 9000:9000/tcp \
-p 10823:10823/tcp \
-p 10823:10823/udp \
-v /etc/localtime:/etc/localtime:ro \
-v /opt/fs22/installer:/opt/fs22/installer \
-v /opt/fs22/config:/opt/fs22/config \
-v /opt/fs22/game:/opt/fs22/game \
-e PUID=<UID from user> \
-e PGID=<UID from user> \
-e VNC_PASSWORD="<your vnc password>" \
-e WEB_USERNAME="<dedicated server portal username>" \
-e WEB_PASSWORD="<dedicated server portal password>" \
-e SERVER_NAME="<your server name>" \
-e SERVER_PASSWORD="your game join password" \
-e SERVER_ADMIN="<your server admin password>" \
-e SERVER_PLAYERS="16" \
-e SERVER_PORT="10823" \
-e SERVER_REGION="en" \
-e SERVER_MAP="MapUS" \
-e SERVER_DIFFICULTY="3" \
-e SERVER_PAUSE="2" \
-e SERVER_SAVE_INTERVAL="180.000000" \
-e SERVER_STATS_INTERVAL="31536000" \
-e SERVER_CROSSPLAY="true" \
toetje585/arch-wine-fs22