Skip to content

mf2012/Docker-7DaysToDie

 
 

Repository files navigation

7 days to die server using LinuxGSM script in Docker

Docker Pulls Docker Stars Docker Last Updated

Image of 7 Days To Die

Information

  • This container works with mods, if you have any problems open a github ticket.
  • The first time you start the container it will be auto-installed stable version.
  • If you want to change any server settings, edit sdtdserver.xml in /path/to/ServerFiles/sdtdserver.xml
  • If you want to recieve alerts check ALERTS.
  • Read everything to avoid any errors.

Usage

Docker

docker run \
  --name 7dtdserver \
  --restart unless-stopped \
  -v "./7DaysToDie:/home/sdtdserver/.local/share/7DaysToDie/" \
  -v "./ServerFiles:/home/sdtdserver/serverfiles/" \
  -v "./LogFolder:/home/sdtdserver/log/" \
  -v "./BackupFolder:/home/sdtdserver/lgsm/backup/" \
  -v "./LGSM-Config:/home/sdtdserver/lgsm/config-lgsm/sdtdserver/" \
  -p 26900:26900/tcp \
  -p 26900:26900/udp \
  -p 26901:26901/udp \
  -p 26902:26902/udp \
  -p 8080:8080/udp \
  -p 8081:8081/tcp \
  -p 8082:8082/tcp \
  -e START_MODE=1 \
  -e VERSION=stable \
  -e TEST_ALERT=YES \
  -e PUID=1000 \
  -e PGID=1000 \
  -e TimeZone=Europe/Madrid \
  vinanrra/7dtd-server

docker-compose

version: '2'
services:
  7dtdserver:
    image: vinanrra/7dtd-server
    container_name: 7dtdserver
    environment:
      - START_MODE=1 #Change between START MODES
      - VERSION=stable # 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=Europe/Madrid
      - TEST_ALERT=YES
      #- ALLOC_FIXES=YES #Optional - Install ALLOC FIXES
    volumes:
      - ./ServerFiles:/home/sdtdserver/serverfiles/ #Optional, serverfiles
      - ./7DaysToDie:/home/sdtdserver/.local/share/7DaysToDie/ #Optional, maps files
      - ./log:/home/sdtdserver/log/ #Optional, logs
      - ./backups:/home/sdtdserver/lgsm/backup/ #Optional, backups
      - ./LGSM-Config:/home/sdtdserver/lgsm/config-lgsm/sdtdserver # Optional, alerts
    ports:
      - 26900:26900/tcp
      - 26900:26900/udp
      - 26901:26901/udp
      - 26902:26902/udp
      - 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 #NEVER USE WITH START_MODE=4 or START_MODE=0

Parameters

Parameter Function
/path/to/7DaysToDie:/home/sdtdserver/.local/share/7DaysToDie/ 7DaysToDie saves, where maps are store.
/path/to/ServerFiles:/home/sdtdserver/serverfiles/ 7DaysToDie server config files.
/path/to/Logs:/home/sdtdserver/log/ 7DaysToDie server log files.
/path/to/BackupFolder:/home/sdtdserver/lgsm/backup/ 7DaysToDie server backups files.
/path/to/LGSM-Config:/home/sdtdserver/lgsm/config-lgsm/sdtdserver/ LGSM config files.
26900:26900/tcp Default 7DaysToDie port required
26900:26900/udp Default 7DaysToDie port required
26901:26901/udp Default 7DaysToDie port required
26902:26902/udp Default 7DaysToDie port required
8080:8080/tcp Default 7DaysToDie webadmin port optional, if you use webadmin remember to change password in /path/to/ServerFiles/sdtdserver.xml
8081:8081/tcp Default 7DaysToDie telnet port optional
8082:8082/tcp Default Server Fixes webserver port optional
START_MODE=1 Start mode of the container - see below for explanation required
VERSION=stable Change between 7 days to die versions more info optional
TEST_ALERT=YES Test alerts at start of server optional
ALLOC_FIXES=YES Install/Update Alloc Fixes, ONLY USE WITH LATEST STABLE BUILD optional
PUID=1000 for UserID - see below for explanation
PGID=1000 for GroupID - see below for explanation
TimeZone=Europe/Madrid for TimeZone - see TZ Database for time zones recomendable
--restart unless-stopped Restart container always unlesss stopped manually NEVER USE WITH START_MODE=4

START MODES:

START_MODE Information
0 Install server
1 Start server
2 Update server
3 Update server and start
4 Backup server and STOP the container

WARNING:

IF YOU UPDATE FROM STABLE TO EXPERIMENTAL OR VICE VERSA, REMEMBER TO BACKUP FIRST YOUR SERVER TO AVOID ANY ERRORS, and if you do not care about files atleast backup your /path/to/ServerFiles/sdtdserver.xml yo save your server settings.

Alerts

LinuxGSM allows alerts to be received using various methods, multiple alerts can be enable at same time:

  • Discord
  • Email (Not working)
  • IFTTT
  • Mailgun
  • Pushbullet
  • Pushover
  • Telegram
  • Slack

Alert settings can be changed in /path/to/Alerts/common.cfg

You recieve alerts only if the server crashes or updates itself.

User / Group Identifiers

When using volumes (-v flags) permissions issues can arise between the host OS and the container, we avoid this issue by allowing you to specify the user PUID and group PGID.

Ensure any volume directories on the host are owned by the same user you specify and any permissions issues will vanish like magic.

In this instance PUID=1000 and PGID=1000, to find yours use id user as below:

  $ id username
    uid=1000(dockeruser) gid=1000(dockergroup) groups=1000(dockergroup)

Support Info

  • Shell access whilst the container is running: docker exec -it 7dtdserver /bin/bash
  • To monitor the logs of the container in realtime: docker logs -f 7dtdserver
  • container version number
    • docker inspect -f '{{ index .Config.Labels "build_version" }}' 7dtdserver
  • image version number
    • docker inspect -f '{{ index .Config.Labels "build_version" }}' vinanrra/7dtd-server

Updating Info

Via Docker Run/Create

  • Update the image: docker pull vinanrra/7dtd-server
  • Stop the running container: docker stop 7dtdserver
  • Delete the container: docker rm 7dtdserver
  • Recreate a new container with the same docker create parameters as instructed above (if mapped correctly to a host folder, your folders and settings will be preserved)
  • Start the new container: docker start 7dtdserver
  • You can also remove the old dangling images: docker image 7dtdserver

Via Docker Compose

  • Update all images: docker-compose pull
    • or update a single image: docker-compose pull 7dtdserver
  • Let compose update all containers as necessary: docker-compose up -d
    • or update a single container: docker-compose up -d 7dtdserver
  • You can also remove the old dangling images: docker image prune

Changelog

Thanks

Donations

If you want to buy me a beer here you can

PayPal

About

7 days to die Stable and Latest_experimental server (compatible with mods) using LinuixGSM script in Docker

Resources

License

Stars

Watchers

Forks

Packages

 
 
 

Contributors

Languages

  • Shell 98.6%
  • Other 1.4%