1
0

feat(telegraph-image): add telegraph-image application configuration

- add data.yml with form fields for KV database, dashboard credentials, telegram integration, and content moderation
- add docker-compose.yml for container deployment with environment variables and network configuration
- add README.md with setup instructions and telegram bot configuration guide in chinese
- add README_en.md with english version of setup instructions
- add main data.yml with application metadata, tags, and architecture support
This commit is contained in:
pooneyy
2025-10-29 11:58:03 +08:00
parent c3800b89f6
commit f66cbc97c8
6 changed files with 192 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
services:
telegraph-image:
image: ghcr.io/pooneyy/telegraph-image:2025.10.29
container_name: telegraph-image
ports:
- ${PANEL_APP_PORT_HTTP}:8080
volumes:
- ${KV_DATABASE_DIR}:/app/data
environment:
- BASIC_USER=${BASIC_USER}
- BASIC_PASS=${BASIC_PASS}
- TG_Chat_ID=${TG_Chat_ID}
- TG_Bot_Token=${TG_Bot_Token}
- WhiteList_Mode=${WhiteList_Mode}
- ModerateContentApiKey=${ModerateContentApiKey}
networks:
- 1panel-network
labels:
createdBy: "Apps"
networks:
1panel-network:
external: true