added webtop

This commit is contained in:
dominikhoebert 2024-08-02 18:02:01 +02:00
parent c4517d7c95
commit d34dbbe44e
3 changed files with 33 additions and 1 deletions

1
.gitignore vendored
View File

@ -46,3 +46,4 @@ free-games-claimer/data/
gitea/data/ gitea/data/
navidrome/data/ navidrome/data/
navidrome/music/ navidrome/music/
webtop/data/

View File

@ -87,7 +87,7 @@ docker network create --driver bridge proxy
- https://github.com/vogler/free-games-claimer 6080 - https://github.com/vogler/free-games-claimer 6080
- https://about.gitea.com/ 3004 222 - https://about.gitea.com/ 3004 222
- https://www.navidrome.org/ 4533 - https://www.navidrome.org/ 4533
- https://github.com/linuxserver/docker-webtop - https://github.com/linuxserver/docker-webtop 3008 3009
- https://www.kasmweb.com/ - https://www.kasmweb.com/
- https://tailscale.com/ - https://tailscale.com/

31
webtop/compose.yml Normal file
View File

@ -0,0 +1,31 @@
# https://github.com/linuxserver/docker-webtop
# Alpine, Ubuntu, Fedora, and Arch based containers containing full desktop environments in officially supported flavors accessible via any modern web browser
name: webtop
services:
webtop:
image: lscr.io/linuxserver/webtop:latest
container_name: webtop
security_opt:
- seccomp:unconfined #optional
environment:
- PUID=1000
- PGID=1000
- TZ=Europe/Vienna
- SUBFOLDER=/ #optional
- TITLE=Webtop #optional
volumes:
- ./data:/config
#- /var/run/docker.sock:/var/run/docker.sock #optional
ports:
- 3008:3000
- 3009:3001 # https
networks:
- proxy
networks:
proxy:
external: true