diff --git a/Apps/ChatGPT-Next-Web/appfile.json b/Apps/ChatGPT-Next-Web/appfile.json new file mode 100644 index 000000000..09f3949a4 --- /dev/null +++ b/Apps/ChatGPT-Next-Web/appfile.json @@ -0,0 +1,112 @@ +{ + "version": "2.8.8", + "title": "Chatgpt-next-web", + "name": "Chatgpt-next-web", + "icon": "https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Memos/icon.png", + "tagline": "A well-designed cross-platform ChatGPT UI.", + "overview": "A well-designed cross-platform ChatGPT UI .", + "thumbnail": "https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Memos/thumbnail.png", + "screenshots": [ + "https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Memos/screenshot-1.png" + ], + "category": ["Utilities"], + "developer": { + "name": "Yidadaa", + "website": "https://github.com/Yidadaa", + "donate_text": "", + "donate_link": "" + }, + "adaptor": { + "name": "CorrectRoadH", + "website": "https://github.com/CorrectRoadH", + "donate_text": "", + "donate_link": "" + }, + "support": "", + "website": "", + "container": { + "image": "yidadaa/chatgpt-next-web:latest", + "shell": "sh", + "privileged": false, + "network_model": "bridge", + "web_ui": { + "http": "3000", + "path": "" + }, + "health_check": "", + "envs": [ + { + "key": "PUID", + "value": "1000", + "description": "", + "configurable": "no" + }, + { + "key": "PGID", + "value": "1000", + "description": "", + "configurable": "no" + }, + { + "key": "TZ", + "value": "$TZ", + "description": "", + "configurable": "no" + }, + { + "key": "OPENAI_API_KEY", + "value": "$OPENAI_API_KEY", + "description": "", + "configurable": "yes" + }, + { + "key": "CODE", + "value": "$CODE", + "description": "password", + "configurable": "yes" + }, + { + "key": "PROXY_URL", + "value": "$PROXY_URL", + "description": "proxy", + "configurable": "yes" + } + ], + "ports": [ + { + "container": "3000", + "host": "3000", + "type": "tcp", + "allocation": "automatic", + "configurable": "no", + "description": "Chat HTTP Port" + } + ], + "devices": [], + "constraints": { + "min_memory": 64, + "min_storage": 128 + }, + "restart_policy": "unless-stopped", + "sysctls": [], + "cap_add": [], + "labels": [], + "host_name": "chatgpt-next-web", + "cmd": [] + }, + "abilities": { + "notification": false, + "widgets": false, + "authentication": false, + "search": false, + "upnp": false + }, + "tips": { + "before_install": [] + }, + "changelog": { + "latest_updates": "", + "url": "" + }, + "latest_update_date": "" +} \ No newline at end of file diff --git a/Apps/ChatGPT-Next-Web/docker-compose.yml b/Apps/ChatGPT-Next-Web/docker-compose.yml new file mode 100644 index 000000000..c5715c7bc --- /dev/null +++ b/Apps/ChatGPT-Next-Web/docker-compose.yml @@ -0,0 +1,69 @@ +name: chatgpt-next-web +services: + chatgpt-next-web: + environment: + PGID: $PGID + PUID: $PUID + TZ: $TZ + CODE: "" + PROXY_URL: "" + image: yidadaa/chatgpt-next-web:v2.8.8 + deploy: + resources: + reservations: + memory: 64M + network_mode: bridge + ports: + - target: 3000 + published: "3000" + protocol: tcp + restart: unless-stopped + x-casaos: + envs: + - container: PUID + description: + en_us: "" + - container: PGID + description: + en_us: "" + - container: TZ + description: + en_us: "timezone" + zh_cn: "时区" + - container: CODE + description: + en_us: "password" + zh_cn: "密码" + - container: PROXY_URL + description: + en_us: "http proxy" + zh_cn: "http 代理" + ports: + - container: "3000" + description: + en_us: WebUI HTTP Port + zh_cn: WebUI HTTP 端口 + +x-casaos: + architectures: + - amd64 + - arm64 + main: chatgpt-next-web + author: CorrectRoadH + category: Utilities + description: + en_us: A well-designed cross-platform ChatGPT UI. + zh_cn: 精心设计的跨平台 ChatGPT UI + developer: Yidadaa + icon: https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/ChatGPT-Next-Web/icon.png + screenshot_link: + - https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/ChatGPT-Next-Web/screenshot-1.png + - https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/ChatGPT-Next-Web/screenshot-2.png + tagline: + en_us: A well-designed cross-platform ChatGPT UI. + zh_cn: 精心设计的跨平台 ChatGPT UI + thumbnail: https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/ChatGPT-Next-Web/thumbnail.png + tips: {} + title: + en_us: ChatGPT-Next-Web + port_map: "3000" diff --git a/Apps/ChatGPT-Next-Web/icon.png b/Apps/ChatGPT-Next-Web/icon.png new file mode 100644 index 000000000..fa7c958f4 Binary files /dev/null and b/Apps/ChatGPT-Next-Web/icon.png differ diff --git a/Apps/ChatGPT-Next-Web/screenshot-1.png b/Apps/ChatGPT-Next-Web/screenshot-1.png new file mode 100644 index 000000000..70c0d3154 Binary files /dev/null and b/Apps/ChatGPT-Next-Web/screenshot-1.png differ diff --git a/Apps/ChatGPT-Next-Web/screenshot-2.png b/Apps/ChatGPT-Next-Web/screenshot-2.png new file mode 100644 index 000000000..31603daa4 Binary files /dev/null and b/Apps/ChatGPT-Next-Web/screenshot-2.png differ diff --git a/Apps/ChatGPT-Next-Web/thumbnail.png b/Apps/ChatGPT-Next-Web/thumbnail.png new file mode 100644 index 000000000..381573055 Binary files /dev/null and b/Apps/ChatGPT-Next-Web/thumbnail.png differ