Files
install_scripts/webtop_installers/docker-compose.yml
2023-11-24 21:34:40 +00:00

19 lines
584 B
YAML

---
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