Hello,

Environment:
Docker host OS = Ubuntu Server 16.04.2 LTS
Docker version = 17.03.1-ce
Docker compose version = 1.13.0
jwilder/nginx-proxy <https://github.com/jwilder/nginx-proxy> version = 1.13.0
Reverse proxy settings = jwilder/nginx-proxy default settings
Target connection = Windows 7 RDP
Network environment = LAN (http) & WAN (https)

In the environment above, 0.9.9 performs consistently. Connections are made with the Windows 7 RDP target and are held until intentionally ended.

In the environment above, 0.9.12 (and 0.9.11) performs inconsistently. Connections are made with the Windows 7 RDP target but last only approximately 5 minutes at which point the connection is terminated for the following: "ERROR: User is not responding." The attached screen shot of the guacd log is an example of the log output. Docker-compose scripts that show how each environment is built are also included.

Has anyone else experienced the same behavior? If so, is there a workaround available that produces consistent 0.9.12 performance?

Regards,
Jake Staub
version: '3'
services:
  guacamole:
    image: 'glyptodon/guacamole:0.9.9'
    container_name: 'guacamole_0-9-9'
    depends_on:
     - guacd
    links:
     - guacd:guacd 
    external_links:
     - postgres:postgres
    environment:
     - POSTGRES_DATABASE=example_db
     - POSTGRES_USER=example_user
     - POSTGRES_PASSWORD=example_password
     - VIRTUAL_HOST=example.lan,example.com
     - LETSENCRYPT_HOST=example.com
     - [email protected]
    restart: 'unless-stopped'
    network_mode: "bridge"
  guacd:
    image: 'glyptodon/guacd:0.9.9'
    container_name: 'guacd_0-9-9'
    restart: 'unless-stopped'
    network_mode: "bridge"
 
version: '3'
services:
  guacamole:
    image: 'glyptodon/guacamole'
    container_name: 'guacamole_latest'
    depends_on:
     - guacd
    links:
     - guacd:guacd 
    external_links:
     - postgres:postgres
    environment:
     - POSTGRES_DATABASE=example_db
     - POSTGRES_USER=example_user
     - POSTGRES_PASSWORD=example_password
     - VIRTUAL_HOST=example.lan,example.com
     - LETSENCRYPT_HOST=example.com
     - [email protected]
    restart: 'unless-stopped'
    network_mode: "bridge"
  guacd:
    image: 'glyptodon/guacd'
    container_name: 'guacd_latest'
    restart: 'unless-stopped'
    network_mode: "bridge"
 

Reply via email to