- Full Linux XFCE desktop in the browser at desktop.atlascorporation.nl (Selkies/WebRTC, Ubuntu 26.04), gated by Caddy basic_auth + TLS - Claude Code CLI + Chromium pre-installed; one-click desktop launchers - runs on loopback only; auth enforced at the Caddy edge - web/os.html: OS v5 adds Remote Desktop app (39 apps total) - docs/remote-desktop.md + deploy/webtop-docker-compose.yml
19 lines
465 B
YAML
19 lines
465 B
YAML
services:
|
|
webtop:
|
|
image: lscr.io/linuxserver/webtop:ubuntu-xfce
|
|
container_name: atlas-webtop
|
|
security_opt:
|
|
- seccomp:unconfined
|
|
environment:
|
|
- PUID=0
|
|
- PGID=0
|
|
- TZ=Europe/Amsterdam
|
|
- TITLE=Atlas Desktop
|
|
- CUSTOM_USER=${WEBTOP_USER}
|
|
- PASSWORD=${WEBTOP_PASSWORD}
|
|
volumes:
|
|
- /opt/atlas/webtop/config:/config
|
|
ports:
|
|
- "127.0.0.1:8131:3000"
|
|
shm_size: "2gb"
|
|
restart: unless-stopped
|