-
-
Notifications
You must be signed in to change notification settings - Fork 305
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
17 additions
and
18 deletions.
There are no files selected for viewing
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
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 |
---|---|---|
|
@@ -2,28 +2,27 @@ | |
sidebar_position: 1 | ||
--- | ||
|
||
# Palworld Directory | ||
# Palworld-Verzeichnis | ||
|
||
Everything related to the Palworld data is inside the `/palworld` folder inside the container | ||
Alles, was mit den Palworld-Dateien zusammenhängt, befindet sich im Ordner `/palworld` innerhalb des Containers. | ||
|
||
## Folder structure | ||
## Ordnerstruktur | ||
|
||
![Folder Structure](../assets/folder_structure.jpg) | ||
![Ordnerstruktur](../assets/folder_structure.jpg) | ||
|
||
| Folder | Use | | ||
|------------------------------|-------------------------------------------------------------------| | ||
| palworld | Root folder with all the Palworld Server files | | ||
| backups | Folder where all the backups from the `backup` command are stored | | ||
| Pal/Saved/Config/LinuxServer | Folder with all the .ini configuration files for manual config | | ||
| Ordner | Verwendung | | ||
|------------------------------|------------------------------------------------------------------------| | ||
| palworld | Stammordner mit allen Dateien des Palworld-Servers | | ||
| backups | Ordner, in dem alle Backups des Befehls `backup` gespeichert werden | | ||
| Pal/Saved/Config/LinuxServer | Ordner mit allen .ini-Konfigurationsdateien für manuelle Konfiguration | | ||
|
||
## Attaching data directory to host filesystem | ||
## Datenverzeichnis an das Host-Dateisystem anbinden | ||
|
||
The simplest way of attaching the palworld folder to your host system is | ||
to use the example given in the docker-compose.yml file: | ||
Der einfachste Weg, das Palworld-Verzeichnis an Ihr Host-System anzubinden ist es das mittels docker-compose.yml bereitgestellte Beispiel zu verwenden: | ||
Check failure on line 21 in docusaurus/i18n/de/docusaurus-plugin-content-docs/current/advanced/palworld-directory.md GitHub Actions / Lint - MarkdownLine length
|
||
|
||
```yml | ||
volumes: | ||
- ./palworld:/palworld/ | ||
``` | ||
This creates a `palworld` folder in the current working directory and mounts the `/palworld` folder. | ||
Dies erstellt ein lokales `palworld`-Verzeichnis im aktuellen Arbeitsverzeichnis und bindet das `/palworld`-Verzeichnis des Containers an. | ||
Check failure on line 28 in docusaurus/i18n/de/docusaurus-plugin-content-docs/current/advanced/palworld-directory.md GitHub Actions / Lint - MarkdownLine length
|