Add webtop install

This commit is contained in:
2023-11-24 21:34:40 +00:00
parent 34ab4f8e15
commit 89e0515c34
3 changed files with 62 additions and 0 deletions

View File

@ -0,0 +1,18 @@
---
version: "2.1"
services:
webtop:
image: ghcr.io/linuxserver/webtop:ubuntu-mate
container_name: webtop
restart: unless-stopped
environment:
- TZ=America/Chicago # Your local timezone
- PUID=1000 # Application user ID
- PGID=1000 # Application group ID
volumes:
# - /host/path/to/var/run/docker.sock:/var/run/docker.sock # Docker Socket on the system, if you want to use Docker in the container
- ./config:/config # Application home directory
ports:
- 3000:3000 # Web Desktop GUI
shm_size: "2gb"
privileged: true