dwoo2dwoo commented on issue #349: GUACAMOLE-678: Implement new UriGuacamoleProperty URL: https://github.com/apache/guacamole-client/pull/349#issuecomment-484702182 @necouchman: thank **you** for fixing it so quickly! I applied your fix and everything is working again. As an aside, I had planned to submit a PR for the Dockerfile to make Guacamole the [default application](https://wiki.apache.org/tomcat/HowTo#How_do_I_make_my_web_application_be_the_Tomcat_default_application.3F). Do you see any problem with that? ``` --- Dockerfile.orig 2019-04-18 03:24:58.745149145 -0400 +++ Dockerfile 2019-04-18 17:39:20.305615647 -0400 @@ -50,6 +50,11 @@ # For the runtime image, we start with the official Tomcat distribution FROM tomcat:${TOMCAT_VERSION}-${TOMCAT_JRE} +# Make Guacamole the default application +RUN cd /usr/local/tomcat/webapps && \ + mv ROOT ROOT.orig && \ + ln -s guacamole ROOT + # This is where the build artifacts go in the runtime image WORKDIR /opt/guacamole ``` David
---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected] With regards, Apache Git Services
