mirror of
https://github.com/okxlin/appstore.git
synced 2025-07-13 21:02:18 +08:00
feat:添加chrome-browser到列表
This commit is contained in:
parent
5d84476216
commit
f7b920afcc
4
apps/chrome-browser/1.16.0/.env.sample
Normal file
4
apps/chrome-browser/1.16.0/.env.sample
Normal file
@ -0,0 +1,4 @@
|
||||
CONTAINER_NAME="chrome-browser"
|
||||
HTTP_PWD="password"
|
||||
MEM_USE="1024m"
|
||||
PANEL_APP_PORT_HTTPS=40313
|
26
apps/chrome-browser/1.16.0/data.yml
Normal file
26
apps/chrome-browser/1.16.0/data.yml
Normal file
@ -0,0 +1,26 @@
|
||||
additionalProperties:
|
||||
formFields:
|
||||
- default: "40313"
|
||||
edit: true
|
||||
envKey: PANEL_APP_PORT_HTTPS
|
||||
labelEn: Port
|
||||
labelZh: 端口
|
||||
required: true
|
||||
rule: paramPort
|
||||
type: number
|
||||
- default: "password"
|
||||
edit: true
|
||||
envKey: HTTP_PWD
|
||||
labelEn: Access Password
|
||||
labelZh: 访问密码
|
||||
random: true
|
||||
required: true
|
||||
rule: paramComplexity
|
||||
type: password
|
||||
- default: "1024m"
|
||||
edit: true
|
||||
envKey: MEM_USE
|
||||
labelEn: Shared memory footprint (1gb)
|
||||
labelZh: 共享内存占用(1gb)
|
||||
required: true
|
||||
type: text
|
24
apps/chrome-browser/1.16.0/docker-compose.yml
Normal file
24
apps/chrome-browser/1.16.0/docker-compose.yml
Normal file
@ -0,0 +1,24 @@
|
||||
services:
|
||||
chrome:
|
||||
image: "kasmweb/chrome:1.16.0"
|
||||
container_name: ${CONTAINER_NAME}
|
||||
restart: always
|
||||
networks:
|
||||
- 1panel-network
|
||||
ports:
|
||||
- "${PANEL_APP_PORT_HTTPS}:6901"
|
||||
volumes:
|
||||
- "chrome_data:/home/kasm-user"
|
||||
environment:
|
||||
- VNC_PW=${HTTP_PWD}
|
||||
shm_size: ${MEM_USE}
|
||||
labels:
|
||||
createdBy: "Apps"
|
||||
|
||||
volumes:
|
||||
chrome_data:
|
||||
name: chrome_data
|
||||
|
||||
networks:
|
||||
1panel-network:
|
||||
external: true
|
3
apps/chrome-browser/1.16.0/scripts/uninstall.sh
Normal file
3
apps/chrome-browser/1.16.0/scripts/uninstall.sh
Normal file
@ -0,0 +1,3 @@
|
||||
#!/bin/bash
|
||||
|
||||
docker-compose down --volumes
|
10
apps/chrome-browser/README.md
Normal file
10
apps/chrome-browser/README.md
Normal file
@ -0,0 +1,10 @@
|
||||
# Chrome
|
||||
|
||||
专为您而打造的浏览器
|
||||
|
||||
# 使用说明
|
||||
|
||||
- 默认账户
|
||||
```
|
||||
username: kasm_user
|
||||
```
|
19
apps/chrome-browser/data.yml
Normal file
19
apps/chrome-browser/data.yml
Normal file
@ -0,0 +1,19 @@
|
||||
name: Chrome Browser
|
||||
tags:
|
||||
- 实用工具
|
||||
title: Google Chrome 浏览器
|
||||
description: Google Chrome 浏览器
|
||||
additionalProperties:
|
||||
key: chrome-browser
|
||||
name: Chrome Browser
|
||||
tags:
|
||||
- Tool
|
||||
shortDescZh: Google Chrome 浏览器
|
||||
shortDescEn: Google Chrome
|
||||
type: tool
|
||||
crossVersionUpdate: true
|
||||
limit: 0
|
||||
recommend: 0
|
||||
website: https://www.google.com/chrome/
|
||||
github: https://www.google.com/chrome/
|
||||
document: https://www.google.com/chrome/
|
4
apps/chrome-browser/develop/.env.sample
Normal file
4
apps/chrome-browser/develop/.env.sample
Normal file
@ -0,0 +1,4 @@
|
||||
CONTAINER_NAME="chrome-browser"
|
||||
HTTP_PWD="password"
|
||||
MEM_USE="1024m"
|
||||
PANEL_APP_PORT_HTTPS=40313
|
26
apps/chrome-browser/develop/data.yml
Normal file
26
apps/chrome-browser/develop/data.yml
Normal file
@ -0,0 +1,26 @@
|
||||
additionalProperties:
|
||||
formFields:
|
||||
- default: "40313"
|
||||
edit: true
|
||||
envKey: PANEL_APP_PORT_HTTPS
|
||||
labelEn: Port
|
||||
labelZh: 端口
|
||||
required: true
|
||||
rule: paramPort
|
||||
type: number
|
||||
- default: "password"
|
||||
edit: true
|
||||
envKey: HTTP_PWD
|
||||
labelEn: Access Password
|
||||
labelZh: 访问密码
|
||||
random: true
|
||||
required: true
|
||||
rule: paramComplexity
|
||||
type: password
|
||||
- default: "1024m"
|
||||
edit: true
|
||||
envKey: MEM_USE
|
||||
labelEn: Shared memory footprint (1gb)
|
||||
labelZh: 共享内存占用(1gb)
|
||||
required: true
|
||||
type: text
|
24
apps/chrome-browser/develop/docker-compose.yml
Normal file
24
apps/chrome-browser/develop/docker-compose.yml
Normal file
@ -0,0 +1,24 @@
|
||||
services:
|
||||
chrome:
|
||||
image: "kasmweb/chrome:develop"
|
||||
container_name: ${CONTAINER_NAME}
|
||||
restart: always
|
||||
networks:
|
||||
- 1panel-network
|
||||
ports:
|
||||
- "${PANEL_APP_PORT_HTTPS}:6901"
|
||||
volumes:
|
||||
- "chrome_data:/home/kasm-user"
|
||||
environment:
|
||||
- VNC_PW=${HTTP_PWD}
|
||||
shm_size: ${MEM_USE}
|
||||
labels:
|
||||
createdBy: "Apps"
|
||||
|
||||
volumes:
|
||||
chrome_data:
|
||||
name: chrome_data
|
||||
|
||||
networks:
|
||||
1panel-network:
|
||||
external: true
|
3
apps/chrome-browser/develop/scripts/uninstall.sh
Normal file
3
apps/chrome-browser/develop/scripts/uninstall.sh
Normal file
@ -0,0 +1,3 @@
|
||||
#!/bin/bash
|
||||
|
||||
docker-compose down --volumes
|
BIN
apps/chrome-browser/logo.png
Normal file
BIN
apps/chrome-browser/logo.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 3.4 KiB |
Loading…
Reference in New Issue
Block a user