chore(deps): update kasm workspaces to v1.18.0 (#1861)
This commit is contained in:
4
apps/telegram/1.18.0/.env.sample
Normal file
4
apps/telegram/1.18.0/.env.sample
Normal file
@@ -0,0 +1,4 @@
|
||||
CONTAINER_NAME="telegram"
|
||||
PANEL_APP_PORT_HTTPS="40105"
|
||||
HTTP_PWD="password"
|
||||
MEM_USE="512m"
|
||||
26
apps/telegram/1.18.0/data.yml
Normal file
26
apps/telegram/1.18.0/data.yml
Normal file
@@ -0,0 +1,26 @@
|
||||
additionalProperties:
|
||||
formFields:
|
||||
- default: 40105
|
||||
edit: true
|
||||
envKey: PANEL_APP_PORT_HTTPS
|
||||
labelEn: HTTP Port
|
||||
labelZh: HTTP端口
|
||||
required: true
|
||||
rule: paramPort
|
||||
type: number
|
||||
- default: password
|
||||
edit: true
|
||||
envKey: HTTP_PWD
|
||||
labelEn: Access Password
|
||||
labelZh: 访问密码
|
||||
random: false
|
||||
required: true
|
||||
rule: paramComplexity
|
||||
type: password
|
||||
- default: "512m"
|
||||
edit: true
|
||||
envKey: MEM_USE
|
||||
labelEn: Shared memory footprint (1gb)
|
||||
labelZh: 共享内存占用(1gb)
|
||||
required: true
|
||||
type: text
|
||||
24
apps/telegram/1.18.0/docker-compose.yml
Normal file
24
apps/telegram/1.18.0/docker-compose.yml
Normal file
@@ -0,0 +1,24 @@
|
||||
services:
|
||||
telegram:
|
||||
container_name: ${CONTAINER_NAME}
|
||||
restart: always
|
||||
networks:
|
||||
- 1panel-network
|
||||
ports:
|
||||
- "${PANEL_APP_PORT_HTTPS}:6901"
|
||||
volumes:
|
||||
- "telegram_data:/home/kasm-user"
|
||||
environment:
|
||||
- VNC_PW=${HTTP_PWD}
|
||||
shm_size: ${MEM_USE}
|
||||
tty: true
|
||||
image: kasmweb/telegram:1.18.0
|
||||
labels:
|
||||
createdBy: "Apps"
|
||||
|
||||
volumes:
|
||||
telegram_data:
|
||||
|
||||
networks:
|
||||
1panel-network:
|
||||
external: true
|
||||
Reference in New Issue
Block a user