-
-
Notifications
You must be signed in to change notification settings - Fork 295
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #500 from thijsvanloef/update-docusaurus
Change Docusaurus to the more easily findable through search engines
- Loading branch information
Showing
7 changed files
with
46 additions
and
41 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters