mirror of
https://github.com/technorabilia/docker-bits
synced 2024-11-18 15:25:41 +00:00
18 lines
849 B
Bash
18 lines
849 B
Bash
# [Remmina](https://remmina.org/) is a remote desktop client written in GTK,
|
|
# aiming to be useful for system administrators and travellers, who need to work
|
|
# with lots of remote computers in front of either large or tiny screens.
|
|
# Remmina supports multiple network protocols, in an integrated and consistent
|
|
# user interface. Currently RDP, VNC, SPICE, NX, XDMCP, SSH and EXEC are
|
|
# supported.
|
|
|
|
source ./.env
|
|
docker run -d \
|
|
--name=remmina \
|
|
-e PUID=${PUID:-1024} `# for UserID` \
|
|
-e PGID=${PGID:-100} `# for GroupID` \
|
|
-e TZ=${TZ:-Europe/Amsterdam} `# Specify a timezone to use for example Europe/Amsterdam` \
|
|
-p 3000:3000 `# Remmina desktop gui.` \
|
|
-v ${BASEDIR:-/volume1/docker}/remmina/config:/config `# Users home directory in the container, stores program settings.` \
|
|
--restart unless-stopped \
|
|
ghcr.io/linuxserver/remmina
|