jammsen / docker-palworld-dedicated-server

Docker container to easily provision and manage Palworld Dedicated Server
https://hub.docker.com/r/jammsen/palworld-dedicated-server
MIT License
911 stars 158 forks source link

[Bug Report] Backups Are Not Running #167

Closed Grunticus03 closed 8 months ago

Grunticus03 commented 8 months ago

Have you read the Important information text above

Current behavior

Backups are not running, I have the following settings configured:

- BACKUP_ENABLED=true
- BACKUP_CRON_EXPRESSION=0 * * * *

Desired behavior

Backups run

Links to screenshots

No response

To Reproduce

Here's my docker-compose

services:
  palworld-dedicated-server:
    build: .
    container_name: palworld-dedicated-server
    image: jammsen/palworld-dedicated-server:latest
    restart: always
    network_mode: bridge
    ports:
      - target: 8211 # gamerserver port inside of the container
        published: 8211 # gamerserver port on your host
        protocol: udp
        mode: host
      - target: 25575 # rcon port inside of the container
        published: 25575 # rcon port on your host
        protocol: tcp
        mode: host
    environment:
      - ALWAYS_UPDATE_ON_START=true
      - MAX_PLAYERS=64
      - MULTITHREAD_ENABLED=true
      - COMMUNITY_SERVER=true
      - RCON_ENABLED=true
      - SERVER_NAME=Pals
      - SERVER_DESCRIPTION=Just Another PalWorld
      - EpicApp=PalServer
      - BACKUP_ENABLED=true
      - BACKUP_CRON_EXPRESSION=0 * * * *
      - REGION=NA
    volumes:
      - ./game:/palworld
  rcon:
    image: outdead/rcon:latest
    profiles: ['rcon']

Software setup

Hardware setup

Additional context

No response

thejcpalma commented 8 months ago

Can you paste a log of the docker container?

Grunticus03 commented 8 months ago

Disregard. I updated to the latest release last night and that seems to have solved whatever the problem was with the original build I was using from....2-3 weeks ago.

jammsen commented 8 months ago

Looks to me you had the current config but not the current image 😄