estimated reading time < 1 min
Remmina is a linux remote desktop client. After deploying the image and configuring it, it can be used to access the configured remote desktops through the web interface
The Docker-Compose File is compatible with QNAPs Container-Station.
---
version: "2.1"
services:
remmina:
image: linuxserver/remmina
container_name: remmina
environment:
- PUID=1000
- PGID=100
- TZ=Asia/Bangkok
volumes:
- /share/Container/container-data/remmina/config:/config
ports:
- 3000:3000
restart: unless-stopped
Views: 16