generated from Renegade-Master/steamcmd-dedicated-server-template
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdocker-compose.yaml
59 lines (57 loc) · 1.72 KB
/
docker-compose.yaml
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
47
48
49
50
51
52
53
54
55
56
57
58
59
#
# ARK: Survival Evolved Dedicated Server using SteamCMD Docker Image.
# Copyright (C) 2022-2022 Renegade-Master [renegade.master.dev@protonmail.com]
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.
#
version: "3.8"
services:
ark-se-server:
build:
context: .
dockerfile: docker/ark-se-dedicated-server.Dockerfile
args:
USER_ID: 1000
GROUP_ID: 1000
restart: unless-stopped
user: "1000:1000"
environment:
- "ADMIN_PASSWORD=changeme"
- "GAME_PORT=7777"
- "GAME_PORT_2=7778"
- "GAME_VERSION=public"
- "MAP_NAME=TheIsland"
- "MAX_PLAYERS=16"
- "QUERY_PORT=27015"
- "SERVER_NAME=ArkSeServer"
- "SERVER_PASSWORD="
ports:
- target: 7777
published: 7777
protocol: udp
- target: 7778
published: 7778
protocol: udp
- target: 27015
published: 27015
protocol: udp
volumes:
- ./ArkSE_Install:/home/steam/ArkSE_Install
- ./ArkSE_Config:/home/steam/ArkSE_Install/ShooterGame/Saved
cap_drop:
- ALL
ulimits:
nofile:
soft: 1000000
hard: 1000000