2021-04-21 00:55:42 +00:00
|
|
|
# [Rdesktop](http://xrdp.org/) - Ubuntu based containers containing full desktop
|
|
|
|
# environments in officially supported flavors accessible via RDP.
|
2021-04-10 10:16:29 +00:00
|
|
|
|
|
|
|
---
|
|
|
|
version: "2.1"
|
|
|
|
services:
|
|
|
|
rdesktop:
|
|
|
|
image: ghcr.io/linuxserver/rdesktop
|
|
|
|
container_name: rdesktop
|
|
|
|
privileged: true # optional
|
|
|
|
environment:
|
|
|
|
# for GroupID
|
|
|
|
- PUID=${PUID:-1024}
|
|
|
|
# for UserID
|
|
|
|
- PGID=${PGID:-100}
|
|
|
|
# Specify a timezone to use for example Europe/Amsterdam
|
2021-04-13 00:58:58 +00:00
|
|
|
- TZ=${TZ:-Europe/Amsterdam}
|
2021-04-10 10:16:29 +00:00
|
|
|
volumes:
|
|
|
|
# Docker Socket on the system, if you want to use Docker in the container
|
2021-07-15 00:46:59 +00:00
|
|
|
- /var/run/docker.sock:/var/run/docker.sock # optional
|
2021-04-10 10:16:29 +00:00
|
|
|
# abc users home directory
|
|
|
|
- ${BASEDIR:-/volume1/docker}/rdesktop/config:/config # optional
|
|
|
|
ports:
|
|
|
|
# RDP access port
|
|
|
|
- 3389:3389
|
|
|
|
shm_size: "1gb" # optional
|
|
|
|
restart: unless-stopped
|