mirror of
https://github.com/okxlin/appstore.git
synced 2025-09-14 13:56:55 +08:00
feat:添加cookiecloud到列表
This commit is contained in:
parent
3d0aa7da22
commit
b731137256
4
apps/cookiecloud/2023.01.20.16.39/.env.sample
Normal file
4
apps/cookiecloud/2023.01.20.16.39/.env.sample
Normal file
@ -0,0 +1,4 @@
|
||||
CONTAINER_NAME="cookiecloud"
|
||||
PANEL_APP_PORT_HTTP="40243"
|
||||
DATA_PATH="./data"
|
||||
API_ROOT=""
|
24
apps/cookiecloud/2023.01.20.16.39/data.yml
Normal file
24
apps/cookiecloud/2023.01.20.16.39/data.yml
Normal file
@ -0,0 +1,24 @@
|
||||
additionalProperties:
|
||||
formFields:
|
||||
- default: 40243
|
||||
edit: true
|
||||
envKey: PANEL_APP_PORT_HTTP
|
||||
labelEn: Port
|
||||
labelZh: 端口
|
||||
required: true
|
||||
rule: paramPort
|
||||
type: number
|
||||
- default: ./data
|
||||
edit: true
|
||||
envKey: DATA_PATH
|
||||
labelEn: Data folder path
|
||||
labelZh: 数据文件夹路径
|
||||
required: true
|
||||
type: text
|
||||
- default: ""
|
||||
edit: true
|
||||
envKey: API_ROOT
|
||||
labelEn: API Directory
|
||||
labelZh: API 目录
|
||||
required: false
|
||||
type: text
|
20
apps/cookiecloud/2023.01.20.16.39/docker-compose.yml
Normal file
20
apps/cookiecloud/2023.01.20.16.39/docker-compose.yml
Normal file
@ -0,0 +1,20 @@
|
||||
version: '3'
|
||||
services:
|
||||
cookiecloud:
|
||||
image: easychen/cookiecloud:2023.01.20.16.39
|
||||
container_name: ${CONTAINER_NAME}
|
||||
restart: always
|
||||
networks:
|
||||
- 1panel-network
|
||||
ports:
|
||||
- "${PANEL_APP_PORT_HTTP}:8088"
|
||||
volumes:
|
||||
- "${DATA_PATH}:/data/api/data"
|
||||
environment:
|
||||
- API_ROOT=${API_ROOT}
|
||||
labels:
|
||||
createdBy: "Apps"
|
||||
|
||||
networks:
|
||||
1panel-network:
|
||||
external: true
|
15
apps/cookiecloud/README.md
Normal file
15
apps/cookiecloud/README.md
Normal file
@ -0,0 +1,15 @@
|
||||
# CookieCloud
|
||||
|
||||
[中文](https://github.com/easychen/CookieCloud/blob/master/README_cn.md) | [English](https://github.com/easychen/CookieCloud/blob/master/README.md)
|
||||
|
||||

|
||||
|
||||
CookieCloud是一个和自架服务器同步Cookie的小工具,可以将浏览器的Cookie及Local storage同步到手机和云端,它内置端对端加密,可设定同步时间间隔。
|
||||
|
||||
|
||||
## 官方教程
|
||||
|
||||

|
||||
|
||||
1. 视频教程:[B站](https://www.bilibili.com/video/BV1fR4y1a7zb) | [Youtube](https://youtu.be/3oeSiGHXeQw) 求关注求订阅🥺
|
||||
1. 图文教程:[掘金](https://juejin.cn/post/7190963442017108027)
|
19
apps/cookiecloud/data.yml
Normal file
19
apps/cookiecloud/data.yml
Normal file
@ -0,0 +1,19 @@
|
||||
name: CookieCloud
|
||||
tags:
|
||||
- 实用工具
|
||||
title: 一个和自架服务器同步 Cookie 的小工具
|
||||
description: 一个和自架服务器同步 Cookie 的小工具
|
||||
additionalProperties:
|
||||
key: cookiecloud
|
||||
name: CookieCloud
|
||||
tags:
|
||||
- Tool
|
||||
shortDescZh: 一个和自架服务器同步 Cookie 的小工具
|
||||
shortDescEn: A small tool for syncing cookies with your self-hosted server
|
||||
type: tool
|
||||
crossVersionUpdate: true
|
||||
limit: 0
|
||||
recommend: 0
|
||||
website: https://github.com/easychen/CookieCloud
|
||||
github: https://github.com/easychen/CookieCloud
|
||||
document: https://github.com/easychen/CookieCloud
|
4
apps/cookiecloud/latest/.env.sample
Normal file
4
apps/cookiecloud/latest/.env.sample
Normal file
@ -0,0 +1,4 @@
|
||||
CONTAINER_NAME="cookiecloud"
|
||||
PANEL_APP_PORT_HTTP="40243"
|
||||
DATA_PATH="./data"
|
||||
API_ROOT=""
|
24
apps/cookiecloud/latest/data.yml
Normal file
24
apps/cookiecloud/latest/data.yml
Normal file
@ -0,0 +1,24 @@
|
||||
additionalProperties:
|
||||
formFields:
|
||||
- default: 40243
|
||||
edit: true
|
||||
envKey: PANEL_APP_PORT_HTTP
|
||||
labelEn: Port
|
||||
labelZh: 端口
|
||||
required: true
|
||||
rule: paramPort
|
||||
type: number
|
||||
- default: ./data
|
||||
edit: true
|
||||
envKey: DATA_PATH
|
||||
labelEn: Data folder path
|
||||
labelZh: 数据文件夹路径
|
||||
required: true
|
||||
type: text
|
||||
- default: ""
|
||||
edit: true
|
||||
envKey: API_ROOT
|
||||
labelEn: API Directory
|
||||
labelZh: API 目录
|
||||
required: false
|
||||
type: text
|
20
apps/cookiecloud/latest/docker-compose.yml
Normal file
20
apps/cookiecloud/latest/docker-compose.yml
Normal file
@ -0,0 +1,20 @@
|
||||
version: '3'
|
||||
services:
|
||||
cookiecloud:
|
||||
image: easychen/cookiecloud:latest
|
||||
container_name: ${CONTAINER_NAME}
|
||||
restart: always
|
||||
networks:
|
||||
- 1panel-network
|
||||
ports:
|
||||
- "${PANEL_APP_PORT_HTTP}:8088"
|
||||
volumes:
|
||||
- "${DATA_PATH}:/data/api/data"
|
||||
environment:
|
||||
- API_ROOT=${API_ROOT}
|
||||
labels:
|
||||
createdBy: "Apps"
|
||||
|
||||
networks:
|
||||
1panel-network:
|
||||
external: true
|
BIN
apps/cookiecloud/logo.png
Normal file
BIN
apps/cookiecloud/logo.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 4.9 KiB |
Loading…
Reference in New Issue
Block a user