forked from thijsvanloef/palworld-server-docker
-
Notifications
You must be signed in to change notification settings - Fork 0
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
1 parent
86537e3
commit e199afe
Showing
2 changed files
with
45 additions
and
0 deletions.
There are no files selected for viewing
28 changes: 28 additions & 0 deletions
28
...s/i18n/ko/docusaurus-plugin-content-docs/current/advanced/palworld-directory.md
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,28 @@ | ||
--- | ||
sidebar_position: 1 | ||
--- | ||
|
||
# Palworld 디렉터리 | ||
|
||
Palworld 데이터와 관련된 모든 것은 컨테이너 내부의 `/palworld` 폴더에 있습니다. | ||
|
||
## 폴더 구조 | ||
|
||
![Folder Structure](../../../../../../docusaurus/docs/assets/folder_structure.jpg) | ||
|
||
| 폴더 | 용도 | | ||
|------------------------------|-------------------------------------------------------------------| | ||
| palworld | 모든 Palworld 서버 파일이 있는 루트 폴더 | | ||
| backups | `backup` 명령어로 생성된 모든 백업이 저장되는 폴더 | | ||
| Pal/Saved/Config/LinuxServer | 수동 설정을 위한 모든 .ini 구성 파일이 있는 폴더 | | ||
|
||
## 호스트의 파일 시스템에 데이터 디렉터리 연결 | ||
|
||
Palworld 폴더를 호스트 시스템에 연결하는 가장 간단한 방법은 아래의 docker-compose.yml 파일 예시를 사용하는 것입니다: | ||
|
||
```yml | ||
volumes: | ||
- ./palworld:/palworld/ | ||
``` | ||
이렇게 하면 현재 작업 디렉터리에 `palworld` 폴더가 생성되고 `/palworld` 폴더가 마운트됩니다. |
17 changes: 17 additions & 0 deletions
17
docusaurus/i18n/ko/docusaurus-plugin-content-docs/current/versions/versions.md
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,17 @@ | ||
--- | ||
sidebar_position: 4 | ||
--- | ||
|
||
# 버전 | ||
|
||
이 페이지는 Docker 이미지 태그의 버전 관리 방법을 보여줍니다. | ||
|
||
## 버전 구성 방식 | ||
|
||
`latest` 이미지와 `dev` 이미지를 제외한 모든 이미지는 [Semver](https://semver.org/)에 따라 태그가 지정됩니다. | ||
|
||
- `latest`: Always the latest release | ||
- `dev`: Latest in progress version (Used only for testing) | ||
- `vX`: Latest Major version | ||
- `vX.X`: Latest Minor version | ||
- `vX.X.X`: Specific Version |