mirror of
https://github.com/okxlin/appstore.git
synced 2026-09-27 16:01:05 +00:00
* Update linkease/kspeeder Docker tag to v0.7.14 * 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>
32 lines
812 B
YAML
32 lines
812 B
YAML
services:
|
|
kspeeder:
|
|
image: "linkease/kspeeder:0.7.14"
|
|
container_name: ${CONTAINER_NAME}
|
|
ports:
|
|
- "${PANEL_APP_PORT_HTTP}:5003"
|
|
- "${PANEL_APP_PORT_TLS}:5443"
|
|
environment:
|
|
- TZ=${TZ}
|
|
- KSPEEDER_PORT=5443
|
|
- KSPEEDER_ADMIN_PORT=5003
|
|
- KSPEEDER_CONFIG=/kspeeder-config
|
|
- KSPEEDER_DATA=/kspeeder-data
|
|
- KS_USER_NODES_CONFIG=/kspeeder-config/nodes.yaml
|
|
- KSPEEDER_PROXY_AUTH=${KSPEEDER_PROXY_AUTH}
|
|
volumes:
|
|
- "${APP_DATA_DIR}:/kspeeder-data"
|
|
- "${APP_CONFIG_DIR}:/kspeeder-config"
|
|
healthcheck:
|
|
test:
|
|
- CMD-SHELL
|
|
- wget -qO- http://127.0.0.1:5003/ || exit 1
|
|
labels:
|
|
createdBy: Apps
|
|
networks:
|
|
- 1panel-network
|
|
restart: unless-stopped
|
|
|
|
networks:
|
|
1panel-network:
|
|
external: true
|