-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
42 lines (38 loc) · 1000 Bytes
/
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
# Satisfactory-2 (Wohnzimmer Sweat)
name: "satisfactory2"
services:
satisfactory-2:
image: wolveix/satisfactory-server
container_name: satisfactory-sweat
restart: always
ports:
- '7778:7777/udp'
- '7778:7777/tcp'
volumes:
- /docker/games/satisfactory-sweat/backup:/config/backups
- /docker/games/satisfactory-sweat/gamefiles:/config/gamefiles
- /docker/games/satisfactory-sweat/logs:/config/logs
- /docker/games/satisfactory-sweat/saved:/config/saved
environment:
- MAXPLAYERS=${MAXPLAYERS}
- PGID=${PGID}
- PUID=${PUID}
- ROOTLESS=${ROOTLESS}
- STEAMBETA=${STEAMBETA}
- AUTOSAVENUM=${AUTOSAVENUM}
deploy:
resources:
limits:
memory: 16G
reservations:
memory: 8G
healthcheck:
test: bash /healthcheck.sh
interval: 30s
timeout: 10s
retries: 3
start_period: 120s
networks:
default:
external: true
name: proxynet