forked from ragingdave/frozen-flame-docker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
34 lines (34 loc) · 854 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
version: "3.7"
services:
frozen_flame:
container_name: frozen-flame-server
build: .
image: ghcr.io/ragingdave/frozen-flame-docker:main
#network_mode: "host"
volumes:
- "/path/to/config:/config"
ports:
- 7779:7779
- 7780:7780/udp
- 27017:27017/udp
expose:
- 7779
- 7780/udp
- 27017/udp
environment:
- "SERVER_NAME=FrozenFlameServer"
- "SERVER_QUERY_PORT=7780"
- "SERVER_PORT=7779"
- "RCON_PORT=27017"
- "RCON_PASSWORD=password"
- "MAXPLAYERS=10"
- "SERVERPASSWORD=password"
- "FREEPVP=true" #Enable PVP for non-friends
- "DAYDURATION=3600" #How long a day lasts
- "PUID=1000"
- "PGID=1000"
- "TZ=Etc/UTC"
#tmpfs:
# - "/run:exec,mode=777"
# - "/tmp:exec,mode=777"
restart: "unless-stopped"