Skip to content

Commit

Permalink
comment REST ports
Browse files Browse the repository at this point in the history
  • Loading branch information
thijsvanloef committed Apr 5, 2024
1 parent c577069 commit 687821a
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 9 deletions.
6 changes: 2 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ services:
ports:
- 8211:8211/udp
- 27015:27015/udp
- 8212:8212/tcp # Port for REST API if REST_API_ENABLED: true
# - 8212:8212/tcp # Port for REST API if REST_API_ENABLED: true
environment:
PUID: 1000
PGID: 1000
Expand Down Expand Up @@ -109,7 +109,7 @@ services:
ports:
- 8211:8211/udp
- 27015:27015/udp
- 8212:8212/tcp # Port for REST API if REST_API_ENABLED: true
# - 8212:8212/tcp # Port for REST API if REST_API_ENABLED: true
env_file:
- .env
volumes:
Expand All @@ -125,7 +125,6 @@ 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 @@ -154,7 +153,6 @@ 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
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +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
# - 8212:8212/tcp # Port for REST API if REST_API_ENABLED: true
environment:
PUID: 1000
PGID: 1000
Expand Down
6 changes: 2 additions & 4 deletions docusaurus/docs/getting-started/quick-setup.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ services:
ports:
- 8211:8211/udp
- 27015:27015/udp
- 8212:8212/tcp # Port for REST API if REST_API_ENABLED: true
# - 8212:8212/tcp # Port for REST API if REST_API_ENABLED: true
environment:
PUID: 1000
PGID: 1000
Expand Down Expand Up @@ -84,7 +84,7 @@ services:
ports:
- 8211:8211/udp
- 27015:27015/udp
- 8212:8212/tcp # Port for REST API if REST_API_ENABLED: true
# - 8212:8212/tcp # Port for REST API if REST_API_ENABLED: true
env_file:
- .env
volumes:
Expand All @@ -109,7 +109,6 @@ 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 @@ -141,7 +140,6 @@ 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 687821a

Please sign in to comment.