No description
  • JavaScript 52.6%
  • Shell 24.6%
  • Dockerfile 12.3%
  • HTML 10.5%
Find a file
2026-01-24 20:46:47 +00:00
.github/workflows Update .github/workflows/debian-xfce-base.yaml 2026-01-24 19:39:56 +00:00
debian-xfce Update debian-xfce/Dockerfile 2026-01-24 20:46:47 +00:00
debian-xfce-onboardme initial commit 2026-01-11 15:41:51 +01:00
debian-xfce-onboardme-devops initial commit 2026-01-11 15:41:51 +01:00
debian-xfce-sunshine initial commit 2026-01-11 15:41:51 +01:00
firefox initial commit 2026-01-11 15:41:51 +01:00
forgejo-runner initial commit 2026-01-11 15:41:51 +01:00
icewm initial commit 2026-01-11 15:41:51 +01:00
README.md initial commit 2026-01-11 15:41:51 +01:00
RemoteDesktops.md initial commit 2026-01-11 15:41:51 +01:00

Nvidia Desktops

Containerized desktop environments for use with the nvidia-container-runtime.

# XFCE Desktop + NoVNC
docker run -it --gpus all \
  --tmpfs /dev/shm:rw \
  -p 8888:8888 \
  -e PASSWD="ChangeMe!" \
  -e USER="friend" \
  harbor.smallhack.org/smallhack/debian-xfce

# Console Only mode
docker run -it --gpus all \
  --tmpfs /dev/shm:rw \
  -p 8888:8888 \
  -e PASSWD="ChangeMe!" \
  -e USER="friend" \
  -e CONSOLE_ONLY="true" \
  harbor.smallhack.org/smallhack/debian-xfce
# kiosk
docker run -it --gpus=all \
-p 8080:8080 \
-e URL="git.smallhack.org" \
harbor.smallhack.org/smallhack/firefox-kiosk
# Onboardme basic
docker run -it --gpus=all \
  --tmpfs /dev/shm:rw \
  -p 8888:8888 \
  -e PASSWD="ChangeMe!" \
  -e USER="player1" \
  harbor.smallhack.org/smallhack/debian-xfce-onboardme
# DevOps flavor with Docker access
docker run -it --gpus=all \
  --tmpfs /dev/shm:rw \
  -v /var/run/docker.sock:/var/run/docker.sock \
  -p 8888:8888 \
  -e PASSWD="ChangeMe!" \
  -e USER="player1" \
  harbor.smallhack.org/smallhack/debian-xfce-devops
---
apiVersion: v1
kind: Secret
metadata:
  name: vnc-secret
type: Opaque
stringData:
  password: DogsAreCool

---
kind: Deployment
apiVersion: apps/v1
metadata:
  name: desktop
spec:
  selector:
    matchLabels:
      app: desktop
  template:
    metadata:
      labels:
        app: desktop
    spec:
      restartPolicy: Always
      containers:
        - name: ubuntu-xfce
          image: deserializeme/debian-xfce
          env:
          - name: "RESOLUTION"
            value: "1920x1080"
          - name: USER
            value: friend
          - name: PASSWD
            valueFrom:
              secretKeyRef:
                name: vnc-secret
                key: password
          imagePullPolicy: Always
          ports:
            - containerPort: 8888
              name: "websockify"
          resources:
            requests:
              memory: "1024Mi"
              cpu: "1000m"
            limits:
              memory: "4096Mi"
              cpu: "4000m"
---
apiVersion: v1
kind: Service
metadata:
  name: desktop
spec:
  selector:
    app: desktop
  ports:
    - name: websockify
      port: 8888
      targetPort: 8888
      protocol: TCP
  type: LoadBalancer