Workflow update

main
technorabilia 2 years ago
parent f3e310af94
commit 8d46f30b47

@ -1,5 +1,6 @@
# [Rdesktop](http://xrdp.org/) - Ubuntu based containers containing full desktop
# environments in officially supported flavors accessible via RDP.
# [Rdesktop](http://xrdp.org/) - Containers containing full desktop environments
# in many popular flavors for Alpine, Ubuntu, Arch, and Fedora accessible via
# RDP.
---
version: "2.1"
@ -7,7 +8,6 @@ services:
rdesktop:
image: ghcr.io/linuxserver/rdesktop
container_name: rdesktop
privileged: true # optional
environment:
# for GroupID
- PUID=${PUID:-1024}
@ -23,5 +23,8 @@ services:
ports:
# RDP access port
- 3389:3389
devices:
# Add this for GL support (Linux hosts only)
- /dev/dri:/dev/dri # optional
shm_size: "1gb" # optional
restart: unless-stopped

@ -1,16 +1,17 @@
# [Rdesktop](http://xrdp.org/) - Ubuntu based containers containing full desktop
# environments in officially supported flavors accessible via RDP.
# [Rdesktop](http://xrdp.org/) - Containers containing full desktop environments
# in many popular flavors for Alpine, Ubuntu, Arch, and Fedora accessible via
# RDP.
source ./.env
docker run -d \
--name=rdesktop \
--privileged `# optional` \
-e PUID=${PUID:-1024} `# for GroupID` \
-e PGID=${PGID:-100} `# for UserID` \
-e TZ=${TZ:-Europe/Amsterdam} `# Specify a timezone to use for example Europe/Amsterdam` \
-p 3389:3389 `# RDP access port` \
-v /var/run/docker.sock:/var/run/docker.sock `# optional` `# Docker Socket on the system, if you want to use Docker in the container` \
-v ${BASEDIR:-/volume1/docker}/rdesktop/config:/config `# optional` `# abc users home directory` \
--device /dev/dri:/dev/dri `# optional` `# Add this for GL support (Linux hosts only)` \
--shm-size="1gb" `# optional` \
--restart unless-stopped \
ghcr.io/linuxserver/rdesktop

Loading…
Cancel
Save