#### Install Webtop #### ## install docker & docker-compse ## apt install docker.io && apt install docker-compose ## create webtop folder ## mkdir /webtop1 cd /webtop1 ## ceate docker-compose file and adjust it ## more info -> https://hub.docker.com/r/linuxserver/webtop nano docker-compose.yaml version: "2.1" services: webtop: image: lscr.io/linuxserver/webtop container_name: webtop security_opt: - seccomp:unconfined #optional environment: - PUID=1000 - PGID=1000 - TZ=Europe/Berlin - SUBFOLDER=/ #optional - KEYBOARD=de-de-qwertz #optional volumes: - webtop1:/config - /var/run/docker.sock:/var/run/docker.sock #optional ports: - 3000:3000 shm_size: "4gb" #optional restart: unless-stopped ## start container ## docker-compose up -d ## open in browser ## http://ip-adress:3000 ## default logins ## user: abc PW: abc ## after password change ## http://ip-adress:3000/?login=true