Skip to content

Commit

Permalink
add rest ports to examples
Browse files Browse the repository at this point in the history
  • Loading branch information
thijsvanloef committed Apr 5, 2024
1 parent 11b78bd commit c577069
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 0 deletions.
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,7 @@ services:
ports:
- 8211:8211/udp
- 27015:27015/udp
- 8212:8212/tcp # Port for REST API if REST_API_ENABLED: true
environment:
PUID: 1000
PGID: 1000
Expand Down Expand Up @@ -108,6 +109,7 @@ services:
ports:
- 8211:8211/udp
- 27015:27015/udp
- 8212:8212/tcp # Port for REST API if REST_API_ENABLED: true
env_file:
- .env
volumes:
Expand All @@ -123,6 +125,7 @@ docker run -d \
--name palworld-server \
-p 8211:8211/udp \
-p 27015:27015/udp \
-p 8212:8212/tcp \
-v ./palworld:/palworld/ \
-e PUID=1000 \
-e PGID=1000 \
Expand Down Expand Up @@ -151,6 +154,7 @@ docker run -d \
--name palworld-server \
-p 8211:8211/udp \
-p 27015:27015/udp \
-p 8212:8212/tcp \
-v ./palworld:/palworld/ \
--env-file .env \
--restart unless-stopped \
Expand Down
1 change: 1 addition & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ services:
ports:
- 8211:8211/udp
- 27015:27015/udp # Required if you want your server to show up in the community servers tab
- 8212:8212/tcp # Port for REST API if REST_API_ENABLED: true
environment:
PUID: 1000
PGID: 1000
Expand Down
4 changes: 4 additions & 0 deletions docusaurus/docs/getting-started/quick-setup.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ services:
ports:
- 8211:8211/udp
- 27015:27015/udp
- 8212:8212/tcp # Port for REST API if REST_API_ENABLED: true
environment:
PUID: 1000
PGID: 1000
Expand Down Expand Up @@ -83,6 +84,7 @@ services:
ports:
- 8211:8211/udp
- 27015:27015/udp
- 8212:8212/tcp # Port for REST API if REST_API_ENABLED: true
env_file:
- .env
volumes:
Expand All @@ -107,6 +109,7 @@ docker run -d \
--name palworld-server \
-p 8211:8211/udp \
-p 27015:27015/udp \
-p 8212:8212/tcp \
-v ./palworld:/palworld/ \
-e PUID=1000 \
-e PGID=1000 \
Expand Down Expand Up @@ -138,6 +141,7 @@ docker run -d \
--name palworld-server \
-p 8211:8211/udp \
-p 27015:27015/udp \
-p 8212:8212/tcp \
-v ./palworld:/palworld/ \
--env-file .env \
--restart unless-stopped \
Expand Down

0 comments on commit c577069

Please sign in to comment.