Files
wiki/content/projects/webtop/index.md

735 B

title, description, date, lastmod, author, showHero
title description date lastmod author showHero
webtop Quick overview of webtop and setup 2025-02-04 2025-02-04 wompmacho false

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
    volumes:
      - /app/webtop/data:/config
    ports:
      - 7978:3000
      - 7979:3001
    restart: unless-stopped