forked from Uuvana-Studios/longvinter-docker-server
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yaml
More file actions
36 lines (34 loc) · 852 Bytes
/
docker-compose.yaml
File metadata and controls
36 lines (34 loc) · 852 Bytes
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
version: "3.7"
services:
longvinter-server:
container_name: longvinter-server
image: longvinter-linux-server
build: .
logging:
driver: json-file
options:
max-size: "10m"
max-file: "3"
ports:
- "7777:7777/tcp"
- "7777:7777/udp"
- "27016:27016/tcp"
- "27016:27016/udp"
environment:
CFG_SERVER_NAME: "Unnamed Island"
CFG_MAX_PLAYERS: "32"
CFG_SERVER_MOTD: "Welcome to Longvinter Island!"
CFG_PASSWORD: ""
CFG_COMMUNITY_WEBSITE: "www.longvinter.com"
CFG_ADMIN_STEAM_ID: ""
CFG_ENABLE_PVP: "true"
CFG_TENT_DECAY: "true"
CFG_MAX_TENTS: "2"
CFG_GAME_PORT: "7777"
CFG_QUERY_PORT: "27016"
volumes:
- longvinter_data:/data
restart: unless-stopped
volumes:
longvinter_data:
name: longvinter_data