mirror of
https://github.com/okxlin/appstore.git
synced 2026-09-23 16:01:01 +00:00
Add Feishin and Pingap app definitions with source evidence, README guidance, strict adapter validation, env closure checks, and moelin/1panel:v2 smoke coverage.
28 lines
636 B
YAML
28 lines
636 B
YAML
services:
|
|
pingap:
|
|
image: "vicanso/pingap:latest"
|
|
container_name: ${CONTAINER_NAME}
|
|
restart: always
|
|
networks:
|
|
- 1panel-network
|
|
ports:
|
|
- "${PANEL_APP_PORT_HTTP}:80"
|
|
- "${PANEL_APP_PORT_HTTPS}:443"
|
|
environment:
|
|
- TZ=${TZ}
|
|
- PINGAP_CONF=/opt/pingap/conf
|
|
- PINGAP_ADMIN_ADDR=0.0.0.0:80/pingap
|
|
- PINGAP_ADMIN_USER=${PINGAP_ADMIN_USER}
|
|
- PINGAP_ADMIN_PASSWORD=${PINGAP_ADMIN_PASSWORD}
|
|
command:
|
|
- pingap
|
|
- --autoreload
|
|
volumes:
|
|
- "${APP_DATA_DIR}:/opt/pingap"
|
|
labels:
|
|
createdBy: "Apps"
|
|
|
|
networks:
|
|
1panel-network:
|
|
external: true
|