-
Notifications
You must be signed in to change notification settings - Fork 23
/
docker-compose.yaml
43 lines (42 loc) · 2.95 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
version: '2.4'
services:
asaserver:
build: .
image: acekorneya/asa_server:2_0_latest
container_name: asa_instance_name
restart: unless-stopped
environment:
- INSTANCE_NAME=Instance_name # The name of the instance
- TZ=America/Los_Angeles # Timezone setting: Change this to your local timezone. Ex.America/New_York, Europe/Berlin, Asia/Tokyo
- BATTLEEYE=FALSE # Set to TRUE to use BattleEye, FALSE to not use BattleEye
- RCON_ENABLED=TRUE # Needed for Graceful Shutdown / Updates / Server Notifications
- DISPLAY_POK_MONITOR_MESSAGE=FALSE # Or TRUE to Show the Server Monitor Messages / Update Monitor
- UPDATE_SERVER=TRUE # Enable or disable update checks
- CHECK_FOR_UPDATE_INTERVAL=24 # Check for Updates interval in hours
- UPDATE_WINDOW_MINIMUM_TIME=12:00 AM # Defines the minimum time, relative to server time, when an update check should run
- UPDATE_WINDOW_MAXIMUM_TIME=11:59 PM # Defines the maximum time, relative to server time, when an update
- RESTART_NOTICE_MINUTES=30 # Duration in minutes for notifying players before a server restart due to updates
- ENABLE_MOTD=FALSE # Enable or disable Message of the Day
- MOTD= # Message of the Day
- MOTD_DURATION=30 # Duration for the Message of the Day
- MAP_NAME=TheIsland # TheIsland, ScorchedEarth / TheIsland_WP, ScorchedEarth_WP, TheCenter_WP / Are the current official maps available
- SESSION_NAME=Server_name # The name of the server session
- SERVER_ADMIN_PASSWORD=MyPassword # The admin password for the server
- SERVER_PASSWORD= # Set a server password or leave it blank (ONLY NUMBERS AND CHARACTERS ARE ALLOWED BY DEVS)
- ASA_PORT=7777 # The port for the server
- RCON_PORT=27020 # The port for the RCON
- MAX_PLAYERS=70 # The maximum number of players allowed on the server
- SHOW_ADMIN_COMMANDS_IN_CHAT=FALSE # Set to TRUE to notify admin commands in chat, FALSE to disable notifications
- CLUSTER_ID=cluster # The cluster ID for the server
- MOD_IDS= # Add your mod IDs here, separated by commas, e.g., 123456789,987654321
- PASSIVE_MODS= # Replace with your passive mods IDs
- CUSTOM_SERVER_ARGS= # If You need to add more Custom Args -ForceRespawnDinos -ForceAllowCaveFlyers
ports:
- "7777:7777/tcp"
- "7777:7777/udp"
- "27020:27020/tcp"
volumes:
- "./ServerFiles/arkserver:/home/pok/arkserver"
- "./Instance_my_instance/Saved:/home/pok/arkserver/ShooterGame/Saved"
- "./Cluster:/home/pok/arkserver/ShooterGame/Saved/clusters"
mem_limit: 16G