✨ feat(DecoTV): add DecoTV application with version 0.4.0 and latest
- add application configuration with form fields for webui port, site name, description, announcement, admin credentials, registration settings, storage options, and douban api
- include docker compose configuration for both v0.4.0 and latest versions with environment variables mapping
- provide comprehensive readme documentation with features, deployment instructions, and security guidelines
- add application metadata with tags, descriptions, and architecture support
- include application logo for visual identification
2025-10-27 01:32:19 +08:00
|
|
|
services:
|
|
|
|
|
decotv:
|
|
|
|
|
image: ghcr.io/decohererk/decotv:latest
|
2025-11-10 16:10:24 +08:00
|
|
|
pull_policy: always
|
✨ feat(DecoTV): add DecoTV application with version 0.4.0 and latest
- add application configuration with form fields for webui port, site name, description, announcement, admin credentials, registration settings, storage options, and douban api
- include docker compose configuration for both v0.4.0 and latest versions with environment variables mapping
- provide comprehensive readme documentation with features, deployment instructions, and security guidelines
- add application metadata with tags, descriptions, and architecture support
- include application logo for visual identification
2025-10-27 01:32:19 +08:00
|
|
|
container_name: ${CONTAINER_NAME}
|
|
|
|
|
restart: always
|
|
|
|
|
networks:
|
|
|
|
|
- 1panel-network
|
|
|
|
|
ports:
|
|
|
|
|
- "${PANEL_APP_PORT_HTTP}:3000"
|
|
|
|
|
environment:
|
|
|
|
|
- USERNAME=${USERNAME}
|
|
|
|
|
- PASSWORD=${PASSWORD}
|
|
|
|
|
- NEXT_PUBLIC_ENABLE_BLOCKAD=true
|
|
|
|
|
- NEXT_PUBLIC_ENABLE_REGISTER=${NEXT_PUBLIC_ENABLE_REGISTER}
|
|
|
|
|
# - NEXT_PUBLIC_DISABLE_YELLOW_FILTER=${NEXT_PUBLIC_DISABLE_YELLOW_FILTER}
|
|
|
|
|
# - NEXT_PUBLIC_SEARCH_MAX_PAGE=${NEXT_PUBLIC_SEARCH_MAX_PAGE}
|
|
|
|
|
- NEXT_PUBLIC_SITE_NAME=${NEXT_PUBLIC_SITE_NAME}
|
|
|
|
|
- NEXT_PUBLIC_SITE_DESCRIPTION=${NEXT_PUBLIC_SITE_DESCRIPTION}
|
|
|
|
|
- NEXT_PUBLIC_STORAGE_TYPE=${NEXT_PUBLIC_STORAGE_TYPE}
|
|
|
|
|
- KVROCKS_URL=${KVROCKS_URL}
|
|
|
|
|
- REDIS_URL=${REDIS_URL}
|
|
|
|
|
- UPSTASH_URL=${UPSTASH_URL}
|
|
|
|
|
- UPSTASH_TOKEN=${UPSTASH_TOKEN}
|
|
|
|
|
- DOUBAN_API_KEY=${DOUBAN_API_KEY}
|
2025-11-10 16:10:24 +08:00
|
|
|
labels:
|
✨ feat(DecoTV): add DecoTV application with version 0.4.0 and latest
- add application configuration with form fields for webui port, site name, description, announcement, admin credentials, registration settings, storage options, and douban api
- include docker compose configuration for both v0.4.0 and latest versions with environment variables mapping
- provide comprehensive readme documentation with features, deployment instructions, and security guidelines
- add application metadata with tags, descriptions, and architecture support
- include application logo for visual identification
2025-10-27 01:32:19 +08:00
|
|
|
createdBy: "Apps"
|
|
|
|
|
|
|
|
|
|
networks:
|
|
|
|
|
1panel-network:
|
|
|
|
|
external: true
|