From 7e44a86b6d1c80cfa85bd02d6dab327182c452f7 Mon Sep 17 00:00:00 2001 From: Tom Pietsch Date: Tue, 20 Feb 2024 15:07:19 +0100 Subject: [PATCH] updated german quick-setup and game-settings according to the changes since last translation --- .../getting-started/configuration/game-settings.md | 1 + .../current/getting-started/quick-setup.md | 8 ++++---- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/docusaurus/i18n/de/docusaurus-plugin-content-docs/current/getting-started/configuration/game-settings.md b/docusaurus/i18n/de/docusaurus-plugin-content-docs/current/getting-started/configuration/game-settings.md index ff2bf71d6..bf1406ed2 100644 --- a/docusaurus/i18n/de/docusaurus-plugin-content-docs/current/getting-started/configuration/game-settings.md +++ b/docusaurus/i18n/de/docusaurus-plugin-content-docs/current/getting-started/configuration/game-settings.md @@ -81,6 +81,7 @@ Beispiele: | REGION | Region | | String | | USEAUTH | Authentifizierung verwenden | True | Boolean | | BAN_LIST_URL | Welche Sperrliste verwenden | [https://api.palworldgame.com/api/banlist.txt](https://api.palworldgame.com/api/banlist.txt) | string | +| TARGET_MANIFEST_ID | Legt die Spielversion entsprechend der Manifest-ID aus dem Steam-Download-Depot fest. | | Siehe [Manifest IDs](https://palworld-server-docker.loef.dev/de/guides/pinning-game-version) | ### Manuell diff --git a/docusaurus/i18n/de/docusaurus-plugin-content-docs/current/getting-started/quick-setup.md b/docusaurus/i18n/de/docusaurus-plugin-content-docs/current/getting-started/quick-setup.md index e7efed5e0..88e3289d9 100644 --- a/docusaurus/i18n/de/docusaurus-plugin-content-docs/current/getting-started/quick-setup.md +++ b/docusaurus/i18n/de/docusaurus-plugin-content-docs/current/getting-started/quick-setup.md @@ -35,7 +35,7 @@ Datei, die Sie verwenden können, um Ihren Server aufzusetzen. ```yml services: palworld: - image: thijsvanloef/palworld-server-docker:latest # Verwenden Sie das Tag latest-arm64 für ARM64-Hosts + image: thijsvanloef/palworld-server-docker:latest restart: unless-stopped container_name: palworld-server stop_grace_period: 30s # Auf die Zeit festlegen, die Sie bereit sind zu warten, bis der Container ordnungsgemäß beendet ist @@ -69,7 +69,7 @@ Passen Sie es an Ihre Bedürfnisse an, sehen Sie sich die [Umgebungsvariablen-Ü ```yml services: palworld: - image: thijsvanloef/palworld-server-docker:latest # Verwenden Sie das Tag latest-arm64 für ARM64-Hosts + image: thijsvanloef/palworld-server-docker:latest restart: unless-stopped container_name: palworld-server stop_grace_period: 30s # die Zeit, die Sie bereit sind zu warten, bis der Container ordnungsgemäß beendet ist @@ -117,7 +117,7 @@ docker run -d \ -e SERVER_DESCRIPTION="palworld-server-docker von Thijs van Loef" \ --restart unless-stopped \ --stop-timeout 30 \ - thijsvanloef/palworld-server-docker:latest # Verwenden Sie das Tag latest-arm64 für ARM64-Hosts + thijsvanloef/palworld-server-docker:latest ``` Als Alternative können Sie die [.env.example](https://github.com/thijsvanloef/palworld-server-docker/blob/main/.env.example) Datei in eine neue Datei mit dem Namen **.env** kopieren. @@ -135,5 +135,5 @@ docker run -d \ --env-file .env \ --restart unless-stopped \ --stop-timeout 30 \ - thijsvanloef/palworld-server-docker:latest # Verwenden Sie das Tag latest-arm64 für ARM64-Hosts + thijsvanloef/palworld-server-docker:latest ```