Files
wompmacho 09a41554e5
All checks were successful
deploy-docs / build-and-deploy (push) Successful in 23s
Style: Enforce mandatory empty lines following all headings
2026-03-25 04:34:46 +00:00

36 lines
736 B
Markdown

---
title: webtop
description: Quick overview of webtop and setup
date: 2025-02-04
lastmod: 2025-02-04
author: wompmacho
showHero: false # needed to hide "hero banner"
---
## 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
``` yaml
# 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
```