https://github.com/kbdharun/kasm-images
This repository contains my custom development images for Kasm Workspaces and webtop.
https://github.com/kbdharun/kasm-images
hacktoberfest images kasm kasm-workspaces webtop
Last synced: about 2 months ago
JSON representation
This repository contains my custom development images for Kasm Workspaces and webtop.
- Host: GitHub
- URL: https://github.com/kbdharun/kasm-images
- Owner: kbdharun
- License: gpl-3.0
- Created: 2023-12-03T11:43:47.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2025-02-27T10:46:27.000Z (over 1 year ago)
- Last Synced: 2025-03-22T02:41:25.629Z (over 1 year ago)
- Topics: hacktoberfest, images, kasm, kasm-workspaces, webtop
- Language: Dockerfile
- Homepage: https://kbdharun.dev/kasm-workspaces-registry
- Size: 108 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- Funding: .github/FUNDING.yml
- License: LICENSE.txt
Awesome Lists containing this project
README
# kasm-images
This repository contains my custom development images for [Kasm Workspaces](https://kasmweb.com) and webtop.
## Quick Reference
- **Compatible Kasm version** (for images): `1.14.0`.
- **Supported architecture**: `amd64`.
- **Registry**: .
- **Registry repo**: .
## Images
> [!NOTE]
> The images in this repository are not official images and are not supported by Kasm Technologies. If you have any issues with these images, please open an issue in this repository and not upstream. All images are built with Linuxserver.io images as a base.
### Debian image
This image is based on the Linuxserver.io Debian image using XFCE as the desktop environment along with additional packages of programming languages for development.
Available via:
- GHCR (GitHub Container Registry): `ghcr.io/kbdharun/kasm-dev-debian:latest`
- DockerHub: `docker.io/kbdharun/kasm-dev-debian:latest`
- Quay: `quay.io/kbdharun/kasm-dev-debian:latest`
---
To verify the container image using [`cosign`](https://github.com/sigstore/cosign) (download the `cosign.pub` file from [here](https://github.com/kbdharun/kasm-images/blob/main/cosign.pub) and execute the following command):
- For GHCR (GitHub Container Registry) image:
```zsh
cosign verify --key cosign.pub ghcr.io/kbdharun/kasm-dev-debian:latest
```
- For DockerHub image:
```zsh
cosign verify --key cosign.pub docker.io/kbdharun/kasm-dev-debian:latest
```
- For Quay image:
```zsh
cosign verify --key cosign.pub quay.io/kbdharun/kasm-dev-debian:latest
```
### Ubuntu image
This image is based on the Linuxserver.io Ubuntu image using XFCE as the desktop environment along with additional packages of programming languages for development.
Available via:
- GHCR (GitHub Container Registry): `ghcr.io/kbdharun/kasm-dev-ubuntu:latest`
- DockerHub: `docker.io/kbdharun/kasm-dev-ubuntu:latest`
- Quay: `quay.io/kbdharun/kasm-dev-ubuntu:latest`
---
To verify the container image using [`cosign`](https://github.com/sigstore/cosign) (download the `cosign.pub` file from [here](https://github.com/kbdharun/kasm-images/blob/main/cosign.pub) and execute the following command):
- For GHCR (GitHub Container Registry) image:
```zsh
cosign verify --key cosign.pub ghcr.io/kbdharun/kasm-dev-ubuntu:latest
```
- For DockerHub image:
```zsh
cosign verify --key cosign.pub docker.io/kbdharun/kasm-dev-ubuntu:latest
```
- For Quay image:
```zsh
cosign verify --key cosign.pub quay.io/kbdharun/kasm-dev-ubuntu:latest
```
### Fedora image
There are two images based on the Linuxserver.io Fedora image. One uses XFCE as the desktop environment and the other uses KDE Plasma as the desktop environment. Both images have additional packages of programming languages for development.
Available via:
- GHCR (GitHub Container Registry): `ghcr.io/kbdharun/kasm-dev-fedora:latest` and `ghcr.io/kbdharun/kasm-dev-fedora-kde:latest`
- DockerHub: `docker.io/kbdharun/kasm-dev-fedora:latest` and `docker.io/kbdharun/kasm-dev-fedora-kde:latest`
- Quay: `quay.io/kbdharun/kasm-dev-fedora:latest` and `quay.io/kbdharun/kasm-dev-fedora-kde:latest`
---
To verify the container image using [`cosign`](https://github.com/sigstore/cosign) (download the `cosign.pub` file from [here](https://github.com/kbdharun/kasm-images/blob/main/cosign.pub) and execute the following command):
- For GHCR (GitHub Container Registry) image:
```zsh
cosign verify --key cosign.pub ghcr.io/kbdharun/kasm-dev-fedora:latest
cosign verify --key cosign.pub ghcr.io/kbdharun/kasm-dev-fedora-kde:latest
```
- For DockerHub image:
```zsh
cosign verify --key cosign.pub docker.io/kbdharun/kasm-dev-fedora:latest
cosign verify --key cosign.pub docker.io/kbdharun/kasm-dev-fedora-kde:latest
```
- For Quay image:
```zsh
cosign verify --key cosign.pub quay.io/kbdharun/kasm-dev-fedora:latest
cosign verify --key cosign.pub quay.io/kbdharun/kasm-dev-fedora-kde:latest
```
## Image Build Attestation
All the image builds/pushes are attested for provenance and integrity using [`actions/attest-build-provenance`](https://github.com/actions/attest-build-provenance). They can be verfied by downloading the recent bundle from the [attestations page](https://github.com/kbdharun/kasm-images/attestations) and having the latest version of [GitHub CLI](https://github.com/cli/cli/releases/latest) installed in your system. Then, execute the following command:
```sh
gh attestation verify oci:// --owner kbdharun --bundle
```
Where, `` is the URL of the image you want to verify (don't specify a tag) and `` is the path to the downloaded attestation file.
## Using as webtop
You can use these images as webtop by using the following [these steps](https://github.com/linuxserver/docker-webtop#usage) and replacing the image name with any image from this repository.