-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdocker-compose.yml
44 lines (39 loc) · 983 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
43
version: "3.4"
# Local compose:
# Test
# docker-compose up
# Daemon
# docker-compose up -d
# Jump in
# docker exec -it stationeers-dedicated bash
# tmux ls
# tmux a
services:
stationeers-dedicated:
container_name: stationeers-dedicated
image: powareverb/stationeers-dedserver:latest
# cap_add:
# - NET_ADMIN
ports:
# Steam server ports
- "27015/tcp"
- "27015/udp"
- "27020/udp"
# stationeers server ports
- "27500:27500/udp"
- "27501:27501/udp"
# See the README.md for these under "Environment Variables"
environment:
TZ: 'Pacific/Auckland'
SERVERNAME: "powareverb-stationeers-dedserver-test"
SERVERPASSWORD: "supersafepassword"
PLANETOID: "mars"
SAVENAME: "mars101"
TMUXDIRECT: "true"
VERSION_BRANCH: "beta"
# For testing
# DONOOP: "true"
volumes:
- 'stationeers-data:/home/steam/stationeers-server-dedicated'
volumes:
stationeers-data: