Skip to content

Commit

Permalink
Merge pull request #500 from thijsvanloef/update-docusaurus
Browse files Browse the repository at this point in the history
Change Docusaurus to the more easily findable through search engines
  • Loading branch information
thijsvanloef authored Mar 9, 2024
2 parents 81ec0bb + 27a993c commit 088c7d2
Show file tree
Hide file tree
Showing 7 changed files with 46 additions and 41 deletions.
38 changes: 0 additions & 38 deletions .github/workflows/docusaurus-deploy.yml

This file was deleted.

7 changes: 7 additions & 0 deletions docusaurus/docs/guides/cronjobs/_category_.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"label": "Cronjobs",
"position": 3,
"link": {
"type": "generated-index"
}
}
File renamed without changes.
File renamed without changes.
36 changes: 36 additions & 0 deletions docusaurus/docs/guides/update-the-container.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
---
sidebar_position: 3
title: How to update the palworld-server-docker container
description: How to update your Palworld dedicated server docker container to enjoy the latest features.
keywords: [Palworld, palworld dedicated server, Palworld Update, Palworld dedicated server update]
image: ../../assets/Palworld_Banner.jpg
sidebar_label: Update the docker container
---
<!-- markdownlint-disable-next-line -->
# How to update the docker container

How to update your Palworld dedicated server docker container to enjoy the latest features.

## docker compose

1. Open the docker-compose.yml
2. Check if your image is either:

```yml
image: thijsvanloef/palworld-server-docker:latest
```
or
```yml
image: thijsvanloef/palworld-server-docker:<release-version> ## For example: v0.32.0
```
3. Run `docker compose down --rmi all` to make sure that there is no other palworld image
4. Run `docker compose up -d` to bring up the container

## docker run

1. Run `docker stop palworld-server`
2. Run `docker rm palworld-server`
3. Run the [docker run command](https://palworld-server-docker.loef.dev/#docker-run) again with the `latest` tag
Original file line number Diff line number Diff line change
Expand Up @@ -35,14 +35,14 @@ Podes utilizar as variáveis da lista para alterar as definições do servidor n
| RCON_ENABLED\*\*\* | Permite RCON para o servidor Palworld | true | true/false |
| RCON_PORT | PORT para conexão RCON | 25575 | 1024-65535 |
| QUERY_PORT | Porta de consulta utilizada para comunicar com os servidores Steam | 27015 | 1024-65535 |
| BACKUP_CRON_EXPRESSION | Frequência das cópias de segurança automáticas | 0 0 \* \* \* | Precisa de uma expressão do CRON. Ver [Configurar cópias de segurança com CRON](/pt-PT/guides/backup/automated-backup) |
| BACKUP_CRON_EXPRESSION | Frequência das cópias de segurança automáticas | 0 0 \* \* \* | Precisa de uma expressão do CRON. Ver [Configurar cópias de segurança com CRON](https://palworld-server-docker.loef.dev/pt-PT/guides/backup/automated-backup) |
| BACKUP_ENABLED | Permite cópias de segurança automáticas | true | true/false |
| DELETE_OLD_BACKUPS | Permite a eliminação das cópias de segurança após um certo número de dias | false | true/false |
| OLD_BACKUP_DAYS | Número de dias para eliminar as cópias de seguranças | 30 | any positive integer |
| AUTO_UPDATE_CRON_EXPRESSION | Frequência dos updates automáticos | 0 \* \* \* \* | Precisa de uma expressão do CRON. Ver [Configurar atualização servidor com CRON](/pt-PT/guides/automatic-updates) |
| AUTO_UPDATE_CRON_EXPRESSION | Frequência dos updates automáticos | 0 \* \* \* \* | Precisa de uma expressão do CRON. Ver [Configurar atualização servidor com CRON](https://palworld-server-docker.loef.dev/pt-PT/guides/automatic-updates) |
| AUTO_UPDATE_ENABLED | Permite cópias de segurança automáticas | false | true/false |
| AUTO_UPDATE_WARN_MINUTES | Tempo de espera para atualizar o servidor, depois de informar os jogadores. | 30 | !0 |
| AUTO_REBOOT_CRON_EXPRESSION | Frequência de reinicio de servidor automático | 0 0 \* \* \* | Precisa de uma expressão do CRON. Ver - [Configurar reinício servidor com CRON](/pt-PT/guides/automatic-reboots) |
| AUTO_REBOOT_CRON_EXPRESSION | Frequência de reinicio de servidor automático | 0 0 \* \* \* | Precisa de uma expressão do CRON. Ver - [Configurar reinício servidor com CRON](https://palworld-server-docker.loef.dev/pt-PT/guides/automatic-reboots) |
| AUTO_REBOOT_ENABLED | Permite reiniciar servidor automaticamente | false | true/false |
| AUTO_REBOOT_WARN_MINUTES | Tempo de espera para reinicar o servidor, depois de informar os jogadores. | 5 | !0 |
| AUTO_REBOOT_EVEN_IF_PLAYERS_ONLINE | Reiniciar servidor mesmo que hajam jogadores online. | false | true/false |
Expand Down

0 comments on commit 088c7d2

Please sign in to comment.