1
0
1Panel-Appstore/apps/promptx/1.27.7/docker-compose.yml
pooneyy 1b052d9860
feat(promptx): add promptx app version 1.27.7
- add new app version 1.27.7 with configuration files
- define form fields with i18n support
- create docker-compose service with health check and network config
- add comprehensive readme files in chinese and english
- provide app metadata with multi-language descriptions and tags
- include logo image for the application
2026-01-17 00:37:18 +08:00

27 lines
516 B
YAML

services:
promptx:
image: deepracticexs/promptx:1.27.7
container_name: ${CONTAINER_NAME}
restart: always
networks:
- 1panel-network
volumes:
- ./data:/root/.promptx
ports:
- ${PANEL_APP_PORT_HTTP}:5203
healthcheck:
test:
- CMD
- curl
- -f
- http://localhost:5203/health
interval: 30s
timeout: 5s
retries: 5
start_period: 30s
labels:
createdBy: Apps
networks:
1panel-network:
external: true