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.

31 lines
1012 B
YAML

# [Webtop](https://github.com/linuxserver/docker-webtop) - Alpine and Ubuntu
# based containers containing full desktop environments in officially supported
# flavors accessible via any modern web browser.
---
version: "2.1"
services:
webtop:
image: ghcr.io/linuxserver/webtop
container_name: webtop
privileged: true # optional
environment:
# for GroupID
- PUID=${PUID:-1024}
# for UserID
- PGID=${PGID:-100}
# Specify a timezone to use for example Europe/Amsterdam
- TZ=${TZ:-Europe/Amsterdam}
# Specify a subfolder to use with reverse proxies, IE `/subfolder/`
- SUBFOLDER=/ # optional
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
- /var/run/docker.sock:/var/run/docker.sock # optional
ports:
# Web Desktop GUI
- 3000:3000
shm_size: "1gb" # optional
restart: unless-stopped