Skip to main content

webtop

··71 words·1 min·
Michael
Author
Michael
some dude that works on datacenters, plays guitar, streams, has a lot of side projects and unhealthy addiction to ow

What is webtop?
#

webtop is a awesome mini linux env I can use as a secure remote web-client for my home network.

Docker Compose Example
#

# webtop -- https://docs.linuxserver.io/images/docker-webtop/#lossless-mode
---
services:
    webtop:
        image: lscr.io/linuxserver/webtop:latest
        container_name: webtop
        environment:
            - PUID=1000
            - PGID=1000
            - TZ=America/New_York
            - TITLE=Webtop #optional
        dns:
            - ${PIHOLE_SERVER}
        shm_size: "1gb" #optional

        volumes:
            - ${WEBTOP_DATA}config:/config
        ports:
             - 7978:3000
             - 7979:3001
        networks:
            - frontend
        restart: unless-stopped

networks:
    frontend:
        external: true