You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

37 lines
1.3 KiB
YAML

2 years ago
# [Webtop](https://github.com/linuxserver/docker-webtop) - Alpine, Ubuntu,
# Fedora, and Arch based containers containing full desktop environments in
# officially supported flavors accessible via any modern web browser.
3 years ago
---
version: "2.1"
services:
webtop:
image: ghcr.io/linuxserver/webtop
container_name: webtop
environment:
# for UserID
2 years ago
- PUID=${PUID:-1024}
# for GroupID
3 years ago
- PGID=${PGID:-100}
2 years ago
# specify a timezone to use, see this [list](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#List).
3 years ago
- TZ=${TZ:-Europe/Amsterdam}
3 years ago
# Specify a subfolder to use with reverse proxies, IE `/subfolder/`
- SUBFOLDER=/ # optional
2 years ago
# String which will be used as page/tab title in the web browser.
- TITLE=Webtop # optional
3 years ago
volumes:
# abc users home directory
- ${BASEDIR:-/volume1/docker}/webtop/config:/config
# Docker Socket on the system, if you want to use Docker in the container
3 years ago
- /var/run/docker.sock:/var/run/docker.sock # optional
3 years ago
ports:
# Web Desktop GUI
- 3000:3000
# Web Desktop GUI HTTPS
- 3001:3001
3 years ago
devices:
# Add this for GL support (Linux hosts only)
- /dev/dri:/dev/dri # optional
3 years ago
shm_size: "1gb" # optional
restart: unless-stopped