mirror of
https://github.com/QYG2297248353/appstore-1panel.git
synced 2024-11-10 21:16:55 +08:00
b8f6928268
* chore(deps): update thijsvanloef/palworld-server-docker docker tag to v0.39.0 * Update app version [skip ci] --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: github-action update-app-version <githubaction@githubaction.com>
36 lines
1.0 KiB
YAML
36 lines
1.0 KiB
YAML
services:
|
|
palworld-server:
|
|
container_name: ${CONTAINER_NAME}
|
|
restart: always
|
|
networks:
|
|
- 1panel-network
|
|
ports:
|
|
- ${PANEL_APP_PORT_HTTP}:${PANEL_APP_PORT_HTTP}/udp
|
|
- ${PANEL_APP_PORT_RCON}:${PANEL_APP_PORT_RCON}/tcp
|
|
- ${PANEL_APP_PORT_QUERY}:${PANEL_APP_PORT_QUERY}/udp
|
|
volumes:
|
|
- ./data:/palworld/
|
|
environment:
|
|
- PUID=1000
|
|
- PGID=1000
|
|
- PORT=${PANEL_APP_PORT_HTTP}
|
|
- PLAYERS=${MAX_PLAYERS}
|
|
- MULTITHREADING=${MULTITHREAD_SWITCH}
|
|
- COMMUNITY=${PUBLIC_SWITCH}
|
|
- PUBLIC_IP=${PUBLIC_IP}
|
|
- PUBLIC_PORT=${PUBLIC_PORT}
|
|
- UPDATE_ON_BOOT=${UPDATE_SWITCH}
|
|
- SERVER_NAME=${SERVER_NAME}
|
|
- ADMIN_PASSWORD=${ADMIN_PASSWORD}
|
|
- SERVER_PASSWORD=${SERVER_PASSWORD}
|
|
- RCON_ENABLED=${RCON_SWITCH}
|
|
- RCON_PORT=${PANEL_APP_PORT_RCON}
|
|
- QUERY_PORT=${PANEL_APP_PORT_QUERY}
|
|
image: thijsvanloef/palworld-server-docker:v0.39.0
|
|
labels:
|
|
createdBy: "Apps"
|
|
|
|
networks:
|
|
1panel-network:
|
|
external: true
|