Skip to content

Commit

Permalink
Update README
Browse files Browse the repository at this point in the history
  • Loading branch information
hmes98318 committed Jan 23, 2024
1 parent 5d02e0e commit 4a808ba
Show file tree
Hide file tree
Showing 2 changed files with 63 additions and 9 deletions.
33 changes: 30 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,20 @@ Docker container that can easily run Palworld dedicated server
| PORT | The server listening port | 8211 | 0-65535 |
| PLAYERS | Max number of players | 16 | 1-32 |
| MULTITHREAD | Whether to enable multithreading | true | true/false |
| ADMIN_PASSWORD | Server admin password | None | string |
| SERVER_NAME | The name of your server | string | string |
| SERVER_DESC | Description of your server | string | string |
| SERVER_PASSWORD | The password of your server | None | string |
| COMMUNITY | Whether the server is appears in the community server list (please set SERVER_PASSWORD) | false | true/false |
| COMMUNITY_IP | The IP of the community server | None | string |
| COMMUNITY_PORT | The port of the community server | 8211 | 0-65535 |
| RCON_ENABLED | Enable RCON for your server | true | true/false |
| RCON_PORT | RCON port number | 25575 | 0-65535 |
| CHECK_UPDATE_ON_START | Whether to automatically check for game updates every time you start it | false | true/false |

If you want to set SERVER_PASSWORD please pay attention to this message
The current game test version has a bug where passwords cannot be entered on non-community servers.

### The first startup will download the Palworld server file, which may take a while (depends on your network condition)


Expand Down Expand Up @@ -43,8 +55,17 @@ services:
environment:
TZ: "Asia/Taipei"
PORT: 8211
PLAYERS: 16
PLAYERS: 32
MULTITHREAD: true
ADMIN_PASSWORD: "youradminpassword"
SERVER_NAME: "Palworld Server"
SERVER_DESC: "Palworld Server Description"
SERVER_PASSWORD: ""
# COMMUNITY: false # Enable this option if you want your server to appear in the community servers list, please set SERVER_PASSWORD
# COMMUNITY_IP:
# COMMUNITY_PORT: 8211
RCON_ENABLED: false
RCON_PORT: 25575
CHECK_UPDATE_ON_START: false
volumes:
- ./palSaved:/home/steam/palworld/Pal/Saved
Expand All @@ -61,10 +82,16 @@ docker run -d \
--restart always \
-e TZ="Asia/Taipei" \
-e PORT=8211 \
-e PLAYERS=16 \
-e PLAYERS=32 \
-e MULTITHREAD=true \
-e ADMIN_PASSWORD="youradminpassword" \
-e SERVER_NAME="Palworld Server" \
-e SERVER_DESC="Palworld Server Description" \
-e SERVER_PASSWORD="" \
-e RCON_ENABLED=false \
-e RCON_PORT=25575 \
-e CHECK_UPDATE_ON_START=false \
-v $(pwd)/palSaved:/home/steam/palworld/Pal/Saved \
-v ./palSaved:/home/steam/palworld/Pal/Saved \
-p 8211:8211/udp \
hmes98318/palworld-docker:latest
```
39 changes: 33 additions & 6 deletions README_zh-TW.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,23 @@
## Environments
| 環境變量 | 描述 | 預設值 | 允許值 |
|------------------------|------------------------------------|--------------|---------------------|
| PORT | 伺服器監聽端口 | 8211 | 0-65535 |
| PLAYERS | 最大玩家數 | 16 | 1-32 |
| MULTITHREAD | 是否啟用多線程 | true | true/false |
| PORT | 伺服器監聽端口 | 8211 | 0-65535 |
| PLAYERS | 最大玩家數 | 16 | 1-32 |
| MULTITHREAD | 是否啟用多線程 | true | true/false |
| ADMIN_PASSWORD | 伺服器管理員密碼 | None | 字串 |
| SERVER_NAME | 伺服器名稱 | 字串 | 字串 |
| SERVER_DESC | 伺服器描述 | 字串 | 字串 |
| SERVER_PASSWORD | 伺服器密碼 | None | 字串 |
| COMMUNITY | 是否顯示在社群伺服器清單中 (請設定 SERVER_PASSWORD) | false | true/false |
| COMMUNITY_IP | 社群伺服器的 IP 地址 | None | 字串 |
| COMMUNITY_PORT | 社群伺服器的端口號 | 8211 | 0-65535 |
| RCON_ENABLED | 啟用伺服器的 RCON 功能 | true | true/false |
| RCON_PORT | RCON 端口號 | 25575 | 0-65535 |
| CHECK_UPDATE_ON_START | 是否在每次啟動時自動檢查遊戲更新 | false | true/false |

如果您想設定 SERVER_PASSWORD,請注意以下訊息
當前遊戲測試版本在**非 community server** 有無法輸入密碼的 bug。

### 首次啟動將會下載 Palworld 伺服器文件,可能需要一些時間 (取決於你的網絡狀況)


Expand Down Expand Up @@ -44,8 +56,17 @@ services:
environment:
TZ: "Asia/Taipei"
PORT: 8211
PLAYERS: 16
PLAYERS: 32
MULTITHREAD: true
ADMIN_PASSWORD: "youradminpassword"
SERVER_NAME: "Palworld Server"
SERVER_DESC: "Palworld Server Description"
# SERVER_PASSWORD: "yourserverpassword"
# COMMUNITY: false # 如果你希望伺服器顯示在社群伺服器列表中,啟用此選項,(請設定 SERVER_PASSWORD)
# COMMUNITY_IP:
# COMMUNITY_PORT: 8211
RCON_ENABLED: false
RCON_PORT: 25575
CHECK_UPDATE_ON_START: false
volumes:
- ./palSaved:/home/steam/palworld/Pal/Saved
Expand All @@ -62,10 +83,16 @@ docker run -d \
--restart always \
-e TZ="Asia/Taipei" \
-e PORT=8211 \
-e PLAYERS=16 \
-e PLAYERS=32 \
-e MULTITHREAD=true \
-e ADMIN_PASSWORD="youradminpassword" \
-e SERVER_NAME="Palworld Server" \
-e SERVER_DESC="Palworld Server Description" \
-e SERVER_PASSWORD="" \
-e RCON_ENABLED=false \
-e RCON_PORT=25575 \
-e CHECK_UPDATE_ON_START=false \
-v $(pwd)/palSaved:/home/steam/palworld/Pal/Saved \
-v ./palSaved:/home/steam/palworld/Pal/Saved \
-p 8211:8211/udp \
hmes98318/palworld-docker:latest
```

0 comments on commit 4a808ba

Please sign in to comment.