You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug
When attempting to run the game server via docker compose file, a cyclical error appears after running the periodic command scheduler cron. The error is:
The log continues to repeat this error until the container is brought down. I could use some help troubleshooting the cause and resolution of this. The storage volume docker is running in has more than enough space free, and the VM has more than enough RAM available, so I am unsure of what the root cause of this error is.
To Reproduce
Create docker-compose.yml file and save contents.
Create /data folder for data volumes.
Run with docker compose up -d
Inspect logs with docker compose logs -f
Error repeats continuously.
Expected behavior
Expected compose file to pull image, install game files, and run game server.
Versions:
Docker-compose version: v2.32.1
Docker image version: v0.8.0 (latest)
Docker/Docker-compose
services:
7dtdserver:
image: vinanrra/7dtd-server
container_name: 7dtdserver
environment:
- LINUXGSM_VERSION=v24.3.4 # Change to use another version of LinuxGSM
- START_MODE=3 # Change between START MODES
- VERSION=v1.2 # Change between 7 days to die versions
- PUID=1000 # Remember to use same as your user
- PGID=1000 # Remember to use same as your user
- TimeZone=America/New_York # Optional - Change Timezone
#- TEST_ALERT=NO # Optional - Send a test alert
#- UPDATE_MODS=NO # Optional - This will allow mods to be update on start, each mod also need to have XXXX_UPDATE=YES to update on start
#- MODS_URLS="" # Optional - Mods urls to install, must be ZIP or RAR.
#- ALLOC_FIXES=NO # Optional - Install ALLOC FIXES
#- ALLOC_FIXES_UPDATE=NO # Optional - Update Allocs Fixes before server start
#- UNDEAD_LEGACY=NO # Optional - Install Undead Legacy mod, if DARKNESS_FALLS it's enable will not install anything
#- UNDEAD_LEGACY_VERSION=stable # Optional - Undead Legacy version
#- UNDEAD_LEGACY_UPDATE=NO # Optional - Update Undead Legacy mod before server start
#- DARKNESS_FALLS=NO # Optional - Install Darkness Falls mod, if UNDEAD_LEGACY it's enable will not install anything
#- DARKNESS_FALLS_UPDATE=NO # Optional - Update Darkness Falls mod before server start
#- DARKNESS_FALLS_URL=False # Optional - Install the provided Darkness Falls url
#- CPM=NO # Optional - CSMM Patron's Mod (CPM)
#- CPM_UPDATE=NO # Optional - Update CPM before server start
#- BEPINEX=NO # Optional - BepInEx
#- BEPINEX_UPDATE=NO # Optional - Update BepInEx before server start
- BACKUP=YES # Optional - Backup server
- BACKUP_HOUR=12 # Optional - Backup hour 0-23
- BACKUP_MAX=5 # Optional - Max backups to keep
- MONITOR=NO # Optional - Keeps server up if crash
volumes:
- ./data/serverfiles:/home/sdtdserver/serverfiles/ #Optional, serverfiles
- ./data/7daystodie:/home/sdtdserver/.local/share/7DaysToDie/ #Optional, maps files
- ./data/log:/home/sdtdserver/log/ #Optional, logs
- ./data/backups:/home/sdtdserver/lgsm/backup/ #Optional, backups
- ./data/lgsm-config:/home/sdtdserver/lgsm/config-lgsm/sdtdserver # Optional, alerts
ports:
- 26900:26900/tcp # Default game ports
- 26900:26900/udp # Default game ports
- 26901:26901/udp # Default game ports
- 26902:26902/udp # Default game ports
- 8080:8080/tcp # OPTIONAL - WEBADMIN
- 8081:8081/tcp # OPTIONAL - TELNET
- 8082:8082/tcp # OPTIONAL - WEBSERVER https://7dtd.illy.bz/wiki/Server%20fixes
restart: unless-stopped # INFO - NEVER USE WITH START_MODE=4 or START_MODE=0
logging:
driver: "json-file"
options:
max-size: "1m"
The text was updated successfully, but these errors were encountered:
Describe the bug
When attempting to run the game server via docker compose file, a cyclical error appears after running the periodic command scheduler cron. The error is:
7dtdserver | * Starting periodic command scheduler cron
7dtdserver | ...done.
7dtdserver | [ERROR] Not enough space, needed: 12 GB, available: 3 GB
7dtdserver exited with code 0
The log continues to repeat this error until the container is brought down. I could use some help troubleshooting the cause and resolution of this. The storage volume docker is running in has more than enough space free, and the VM has more than enough RAM available, so I am unsure of what the root cause of this error is.
To Reproduce
docker compose up -d
docker compose logs -f
Expected behavior
Expected compose file to pull image, install game files, and run game server.
Versions:
Docker/Docker-compose
The text was updated successfully, but these errors were encountered: