Fixes suggested by catalog maintainer
This commit is contained in:
parent
e3091ac8ed
commit
acb97f0b9f
@ -6,8 +6,6 @@ Thanks to HTML5, once Guacamole is installed on a server, all you need to access
|
|||||||
|
|
||||||
This service uses the official Apache [http://guacamole.incubator.apache.org](https://hub.docker.com/r/glyptodon/guacamole/) Guacamole image. It also uses the official MariaDB image as its backend.
|
This service uses the official Apache [http://guacamole.incubator.apache.org](https://hub.docker.com/r/glyptodon/guacamole/) Guacamole image. It also uses the official MariaDB image as its backend.
|
||||||
Health checks are enabled on all services.
|
Health checks are enabled on all services.
|
||||||
## Prerequisites
|
|
||||||
You must have the Rancher-NFS storage driver set up. This is required for persistent SQL storage, otherwise all users and connection settings will be reset on every container move.
|
|
||||||
|
|
||||||
## How to use
|
## How to use
|
||||||
|
|
||||||
|
@ -3,11 +3,11 @@ services:
|
|||||||
database:
|
database:
|
||||||
image: mariadb
|
image: mariadb
|
||||||
environment:
|
environment:
|
||||||
MYSQL_DATABASE: guacamole_db
|
MYSQL_DATABASE: ${guacamole_db}
|
||||||
MYSQL_ONETIME_PASSWORD: 'true'
|
MYSQL_ONETIME_PASSWORD: 'true'
|
||||||
MYSQL_PASSWORD: guacamole_password
|
MYSQL_PASSWORD: ${guacamole_password}
|
||||||
MYSQL_RANDOM_ROOT_PASSWORD: 'true'
|
MYSQL_RANDOM_ROOT_PASSWORD: 'true'
|
||||||
MYSQL_USER: guacamole_user
|
MYSQL_USER: ${guacamole_user}
|
||||||
volumes_from:
|
volumes_from:
|
||||||
- db-data
|
- db-data
|
||||||
labels:
|
labels:
|
||||||
@ -38,14 +38,14 @@ services:
|
|||||||
guacamole:
|
guacamole:
|
||||||
image: glyptodon/guacamole
|
image: glyptodon/guacamole
|
||||||
environment:
|
environment:
|
||||||
MYSQL_DATABASE: guacamole_db
|
MYSQL_DATABASE: ${guacamole_db}
|
||||||
MYSQL_HOSTNAME: database
|
MYSQL_HOSTNAME: database
|
||||||
MYSQL_PASSWORD: guacamole_password
|
MYSQL_PASSWORD: ${guacamole_password}
|
||||||
MYSQL_USER: guacamole_user
|
MYSQL_USER: ${guacamole_user}
|
||||||
links:
|
links:
|
||||||
- guacd:guacd
|
- guacd:guacd
|
||||||
ports:
|
ports:
|
||||||
- 8080:8080/tcp
|
- ${public_port}:8080/tcp
|
||||||
command:
|
command:
|
||||||
- /bin/bash
|
- /bin/bash
|
||||||
- -c
|
- -c
|
||||||
|
Loading…
x
Reference in New Issue
Block a user