Files
appstore/apps/pingap/latest/docker-compose.yml
T
okxlin b60d5dbf4d feat: add feishin and pingap
Add Feishin and Pingap app definitions with source evidence, README guidance, strict adapter validation, env closure checks, and moelin/1panel:v2 smoke coverage.
2026-06-27 19:56:02 +08:00

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