Add kasm-workspaces. (#1447)

* Add kasm-workspaces.

* Fix documentation.
This commit is contained in:
Stavros 2023-10-23 21:10:42 +03:00 committed by GitHub
parent 62f7e50853
commit 8d273c2044
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 67 additions and 0 deletions

View File

@ -67,6 +67,7 @@ This is the official repository for the Tipi App Store. It contains all the apps
- [Joplin](https://github.com/laurent22/joplin) - Privacy focused note-taking app
- [Kanboard](https://github.com/kanboard/kanboard) - Kanboard is a free and open source Kanban project management software.
- [Kapowarr](https://github.com/Casvt/Kapowarr) - Kapowarr is a software to build and manage a comic book library, fitting in the \*arr suite of software.
- [Kasm Workspaces](https://github.com/kasmtech) - Kasm Workspaces is a docker container streaming platform for delivering browser-based access to desktops, applications, and web services
- [Kavita](https://github.com/Kareadita/Kavita) - Kavita is a fast, feature rich, cross platform reading server
- [Libreddit](https://github.com/spikecodes/libreddit) - Private front-end for Reddit
- [LibrePhotos](https://github.com/LibrePhotos/librephotos) - Complete photo management service

View File

@ -0,0 +1,17 @@
{
"name": "Kasm Workspaces",
"available": true,
"port": 8744,
"exposable": true,
"id": "kasm-workspaces",
"description": "Kasm Workspaces is a docker container streaming platform for delivering browser-based access to desktops, applications, and web services.",
"tipi_version": 1,
"version": "1.14.0",
"categories": ["utilities"],
"short_desc": "Container streaming platform.",
"author": "Kasm",
"source": "https://github.com/kasmtech",
"website": "https://www.kasmweb.com/",
"form_fields": [],
"supported_architectures": ["arm64", "amd64"]
}

View File

@ -0,0 +1,41 @@
version: "3.7"
services:
kasm-workspaces:
image: lscr.io/linuxserver/kasm:1.14.0
container_name: kasm-workspaces
privileged: true
environment:
- KASM_PORT=8744
volumes:
- ${APP_DATA_DIR}/data:/opt
ports:
- 8743:3000
- ${APP_PORT}:8744
restart: unless-stopped
networks:
- tipi_main_network
labels:
# Main
traefik.enable: true
traefik.http.middlewares.kasm-workspaces-web-redirect.redirectscheme.scheme: https
traefik.http.services.kasm-workspaces.loadbalancer.server.port: 8744
# Web
traefik.http.routers.kasm-workspaces-insecure.rule: Host(`${APP_DOMAIN}`)
traefik.http.routers.kasm-workspaces-insecure.entrypoints: web
traefik.http.routers.kasm-workspaces-insecure.service: kasm-workspaces
traefik.http.routers.kasm-workspaces-insecure.middlewares: kasm-workspaces-web-redirect
# Websecure
traefik.http.routers.kasm-workspaces.rule: Host(`${APP_DOMAIN}`)
traefik.http.routers.kasm-workspaces.entrypoints: websecure
traefik.http.routers.kasm-workspaces.service: kasm-workspaces
traefik.http.routers.kasm-workspaces.tls.certresolver: myresolver
# Local domain
traefik.http.routers.kasm-workspaces-local-insecure.rule: Host(`kasm-workspaces.${LOCAL_DOMAIN}`)
traefik.http.routers.kasm-workspaces-local-insecure.entrypoints: web
traefik.http.routers.kasm-workspaces-local-insecure.service: kasm-workspaces
traefik.http.routers.kasm-workspaces-local-insecure.middlewares: kasm-workspaces-web-redirect
# Local domain secure
traefik.http.routers.kasm-workspaces-local.rule: Host(`kasm-workspaces.${LOCAL_DOMAIN}`)
traefik.http.routers.kasm-workspaces-local.entrypoints: websecure
traefik.http.routers.kasm-workspaces-local.service: kasm-workspaces
traefik.http.routers.kasm-workspaces-local.tls: true

View File

@ -0,0 +1,8 @@
## Kasm
Kasm Workspaces is a docker container streaming platform for delivering browser-based access to desktops, applications, and web services. Kasm uses devops-enabled Containerized Desktop Infrastructure (CDI) to create on-demand, disposable, docker containers that are accessible via web browser. Example use-cases include Remote Browser Isolation (RBI), Data Loss Prevention (DLP), Desktop as a Service (DaaS), Secure Remote Access Services (RAS), and Open Source Intelligence (OSINT) collections.
The rendering of the graphical-based containers is powered by the open-source project KasmVNC
**Warning:** You will firtly need to access the port 8743 for the initial setup of the container. **If you dont do this the app won't work!**<br>
**Warning:** The app works with https if you dont access **all the ports** (setup and main) with https in the front you will get an empty response error.

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB