Add webtop install
This commit is contained in:
18
webtop_installers/docker-compose.yml
Normal file
18
webtop_installers/docker-compose.yml
Normal 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
|
||||
Reference in New Issue
Block a user