27 lines
515 B
YAML
27 lines
515 B
YAML
services:
|
|
promptx:
|
|
image: deepracticexs/promptx:2.2.0
|
|
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
|