-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yaml
42 lines (41 loc) · 1005 Bytes
/
docker-compose.yaml
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
version: "3.6"
services:
satisfactory-server:
build:
context: .
dockerfile: docker/satisfactory-server.Dockerfile
args:
USER_ID: 1000
GROUP_ID: 1000
restart: always
user: "1000:1000"
environment:
- "GAME_VERSION=public"
- "MAX_PLAYERS=16"
- "BIND_IP=0.0.0.0"
- "QUERY_PORT=15777"
- "GAME_PORT=7777"
ports:
- target: 15777
published: 15777
protocol: udp
- target: 15777
published: 15777
protocol: tcp
- target: 15000
published: 15000
protocol: udp
- target: 15000
published: 15000
protocol: tcp
- target: 7777
published: 7777
protocol: udp
- target: 7777
published: 7777
protocol: tcp
volumes:
- ./SatisfactoryDedicatedServer:/home/steam/SatisfactoryDedicatedServer
- ./SatisfactorySaveGames:/home/steam/.config/Epic/FactoryGame/Saved/SaveGames
cap_drop:
- ALL