-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
47 lines (44 loc) · 1.14 KB
/
Copy pathdocker-compose.yml
File metadata and controls
47 lines (44 loc) · 1.14 KB
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
version: "3"
services:
satisfactory-server:
container_name: satisfactory-server
hostname: satisfactory-server
image: wolveix/satisfactory-server:latest
ports:
- "7777:7777/udp"
- "15000:15000/udp"
- "15777:15777/udp"
volumes:
- ./satisfactory-data:/config
environment:
- MAXPLAYERS=4
- PGID=1000
- PUID=1000
- ROOTLESS=false
- STEAMBETA=false
- TZ=Europe/Berlin
restart: unless-stopped
deploy:
resources:
limits:
memory: 6G
reservations:
memory: 4G
admin-panel:
container_name: satisfactory-admin-panel
build:
context: ./satisfactory-admin-panel
ports:
- "3000:3000"
volumes:
- ./satisfactory-data:/app/data:ro
# Don't mount the entire /app directory, which would override node_modules
- ./satisfactory-admin-panel/src:/app/src
- ./satisfactory-admin-panel/public:/app/public
- ./.env:/app/.env
- /var/run/docker.sock:/var/run/docker.sock # Add Docker socket mount
env_file:
- ./.env
restart: unless-stopped
depends_on:
- satisfactory-server