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.

33 lines
1.1 KiB
YAML

2 years ago
# [Rdesktop](http://xrdp.org/) - Containers containing full desktop environments
# in many popular flavors for Alpine, Ubuntu, Arch, and Fedora accessible via
# RDP.
3 years ago
---
version: "2.1"
services:
rdesktop:
image: ghcr.io/linuxserver/rdesktop
container_name: rdesktop
environment:
# for UserID
2 years ago
- PUID=${PUID:-1024}
# for GroupID
3 years ago
- PGID=${PGID:-100}
# 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
volumes:
# Configuration files.
- ${BASEDIR:-/volume1/docker}/rdesktop/config:/config
3 years ago
# 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
# abc users home directory
- ${BASEDIR:-/volume1/docker}/rdesktop/config:/config # optional
ports:
# RDP access port
- 3389:3389
2 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