From 0575eff79ebc4a31924dccdc77ccf93df002cf81 Mon Sep 17 00:00:00 2001 From: Stephen Eckels Date: Sun, 29 Apr 2018 13:16:36 -0400 Subject: [PATCH] Update README.md --- README.md | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/README.md b/README.md index aa0a27a..7c36c07 100644 --- a/README.md +++ b/README.md @@ -65,3 +65,24 @@ You should only enable the extensions you require, if an extensions is not confi ## Default User The default username is `guacadmin` with password `guacadmin`. + +## On Windows +Docker host drive mounts dont work properly on windows. To use postgress you must mount the config directoy inside of the docker vm. This uses a local driver to do this, be careful to gracefully shutdown or data will be lost, docker-compose: + +``` +version: "3.5" + +services: + guacamole: + image: oznu/guacamole + container_name: guacamole + volumes: + - postgres:/config + ports: + - 8080:8080 + network_mode: "bridge" + +volumes: + postgres: + driver: local +```