mirror of
https://github.com/jwetzell/docker-guacamole.git
synced 2026-08-29 19:09:15 +00:00
Update README.md
This commit is contained in:
@@ -65,3 +65,24 @@ You should only enable the extensions you require, if an extensions is not confi
|
|||||||
## Default User
|
## Default User
|
||||||
|
|
||||||
The default username is `guacadmin` with password `guacadmin`.
|
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
|
||||||
|
```
|
||||||
|
|||||||
Reference in New Issue
Block a user