Current repository of SparkView for Docker, globally distributed by beyond SSL GmbH.
SparkView is a smart and easy remote access solution that works from any device with a browser.
No VPN client needs to be installed, simply deploy the Docker image in your DMZ.
Access VMs, desktops, servers or applications anytime and from anywhere, without complex and costly client roll-outs or user management.
Key benefits of SparkView
- TLS security (SSL via RDP) and authentication on network level (NLA)
- No data transmitted between client and application, just images
- One single point of administration
- Easy local printing, no installation and handling of printer drivers needed
- Very fast and easy file transfer (drag & drop)
- Copy and paste between the local client and remote applications
- Supports Radius, SAML, SSO, 2FA
- Flexible, stable and highly scalable (> 10k users)
- RDP, SSH, VNC and Telnet protocols are supported
- No Java, No Flash, No ActiveX, No Plugin
- and more
Check out this image for a first look and talk to us to learn about all the features and solutions offered by beyond SSL and SparkView (e.g. integrations with F5 and Pulse Secure)
For more information, please click here.
Just run docker-compose up -d
from the same directory, where the docker-compose.yaml
exists or reference to it, using the -f
flag.
The following command will lead to a working instance on port 80:
docker run -p 80:80 beyondssl/sparkview
. Use -d
flag for detached mode.
For use with HTTPS on port 443, use:
docker run -p 443:443 beyondssl/sparkview
. Use -d
flag for detached mode.
For quick starts via docker-compose, the following docker-compose.yaml is used by default:
---
version: '3'
volumes:
data:
conf:
keystore:
logs:
services:
sparkview:
image: 'beyondssl/sparkview:latest'
volumes:
- type: volume
source: data
target: /usr/local/bin/SparkGateway/data
- type: volume
source: conf
target: /usr/local/bin/SparkGateway/conf
- type: volume
source: keystore
target: /usr/local/bin/SparkGateway/keystore
- type: volume
source: logs
target: /usr/local/bin/SparkGateway/logs
ports:
- '80:80'
- '443:443'