Skip to content

Commit

Permalink
update md file
Browse files Browse the repository at this point in the history
  • Loading branch information
Temple2001 committed Feb 12, 2024
1 parent 86537e3 commit e199afe
Show file tree
Hide file tree
Showing 2 changed files with 45 additions and 0 deletions.
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` 폴더가 마운트됩니다.
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

0 comments on commit e199afe

Please sign in to comment.