Skip to content

Daily/weekly restart #129

Answered by thijsvanloef
GMBridge asked this question in Q&A
Discussion options

You must be logged in to vote

This is something that is not in the scope of this project. There are also a lot of ways this can be achieved without changing the current image.

You might want to try running a restarter container next to the server like this:

services:
   palworld:
      image: thijsvanloef/palworld-server-docker:latest
      restart: unless-stopped
      container_name: palworld-server
      ports:
        - 8211:8211/udp
        - 27015:27015/udp
      environment:
         - PUID=1000
         - PGID=1000
         - PORT=8211 # Optional but recommended
         - PLAYERS=16 # Optional but recommended
         - MULTITHREADING=false
         - COMMUNITY=false  # Enable this if you want your server to …

Replies: 2 comments

Comment options

You must be logged in to vote
0 replies
Answer selected by thijsvanloef
Comment options

You must be logged in to vote
0 replies
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
enhancement New feature or request wontfix This will not be worked on
3 participants
Converted from issue

This discussion was converted from issue #37 on January 26, 2024 09:22.