Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[BUG] Not enough space error #291

Open
Hollywood0967 opened this issue Feb 7, 2025 · 0 comments
Open

[BUG] Not enough space error #291

Hollywood0967 opened this issue Feb 7, 2025 · 0 comments
Labels
bug Something isn't working

Comments

@Hollywood0967
Copy link

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

  1. Create docker-compose.yml file and save contents.
  2. Create /data folder for data volumes.
  3. Run with docker compose up -d
  4. Inspect logs with docker compose logs -f
  5. 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"

@Hollywood0967 Hollywood0967 added the bug Something isn't working label Feb 7, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

1 participant