docker-ark-server
docker-ark-server copied to clipboard
Segmentation fault when attempting to install game files.
The ark_server process fails to download the files after running docker-compose up -d
with the .yml file configured as such:
version: '3'
services:
server:
restart: always
container_name: ark_server
image: hermsi/ark-server:latest
volumes:
- ${HOME}/ark-server:/app
- ${HOME}/ark-server-backups:/home/steam/ARK-Backups
environment:
- SESSION_NAME="[][][][][][][][]" //Removed for post
- SERVER_MAP="TheIsland"
- SERVER_PASSWORD="[][][][][][][][]" //Removed for post
- ADMIN_PASSWORD="[][][][][][][][]" //Removed for post
- MAX_PLAYERS=20
- UPDATE_ON_START="false"
- BACKUP_ON_STOP="false"
- PRE_UPDATE_BACKUP="true"
- WARN_ON_STOP="true"
- ENABLE_CROSSPLAY="false"
- DISABLE_BATTLEEYE="true"
ports:
# Port for connections from ARK game client
- "7777:7777/udp"
# Raw UDP socket port (always Game client port +1)
- "7778:7778/udp"
# RCON management port
- "27020:27020/tcp"
# Steam's server-list port
- "27015:27015/udp"
networks:
- default
Here's the logs from the docker tail:
2022-11-01T16:39:48.754286979Z
2022-11-01T16:39:48.802699708Z # Ark Server - Tue Nov 1 16:39:48 UTC 2022
2022-11-01T16:39:48.804216472Z # IMAGE_VERSION: '1667278962'
2022-11-01T16:39:48.853675365Z # RUNNING AS USER 'steam' - '1000'
2022-11-01T16:39:48.855997931Z # ARGS:
2022-11-01T16:39:48.856062291Z _______________________________________
2022-11-01T16:39:48.870385689Z Setting up folder and file structure...
2022-11-01T16:39:48.880348836Z No game files found. Installing...
2022-11-01T16:39:49.281376508Z Running command 'install' for instance 'main'
2022-11-01T16:39:49.355178785Z Installing ARK serverExecuting /home/steam/steamcmd/steamcmd.sh +@NoPromptForPassword 1 +force_install_dir /app/server +login anonymous +app_update 376030 validate +quit
2022-11-01T16:39:49.791598831Z Unable to determine CPU Frequency. Try defining CPU_MHZ.
2022-11-01T16:39:49.791926792Z
2022-11-01T16:39:50.304944843Z /home/steam/steamcmd/steamcmd.sh: line 39: 146 Segmentation fault (core dumped) $DEBUGGER "$STEAMEXE" "$@"
2022-11-01T16:39:50.378220639Z /var/spool/cron/: mkstemp: Permission denied
I have the same error with latest version. I used image tagged "tools-1.6.61" and works for me.
Is this still happening? I'm unable to reproduce it on my side .. :/