Go to file
Giles Bradshaw 3f439a1565 chore(deps): add renovate.json 2020-08-27 14:30:35 +00:00
guacamole-postgresql . 2020-05-10 21:59:45 +01:00
.drone-home.star . 2020-05-10 21:59:45 +01:00
.gitignore ci: remove certificates from .gitignore 2020-08-11 11:00:12 +01:00
.versionrc ci: tag message in change log 2020-08-11 13:20:37 +01:00
CHANGELOG.md chore(release): 0.0.3 2020-08-11 13:21:11 +01:00
README.md ci: include db deployment script 2020-08-11 13:17:35 +01:00
build.sh ci: path top docker corrected 2020-08-11 10:56:04 +01:00
deploy.sh ci: include db deployment script 2020-08-11 13:17:35 +01:00
docker-compose.yml . 2020-05-10 21:59:45 +01:00
init-postgresql.sql ci: include db deployment script 2020-08-11 13:17:35 +01:00
package.json chore(release): 0.0.3 2020-08-11 13:21:11 +01:00
renovate.json chore(deps): add renovate.json 2020-08-27 14:30:35 +00:00
yarn.lock ci: package.json scripts and release 2020-08-11 10:47:20 +01:00

README.md

guacamole

secrets

  • guacamole-postgres-db
  • guacamole-postgres-password
  • guacamole-postgres-user
  • local-docker-registry
  • registry-password

initial deployment

initialise database

docker ps | grep guacamole-postgresql.1
sh init-postgresql.sh $ID

using ssh keys

guacamole does not work with the standard openssh format for private keys. ie:

-----BEGIN OPENSSH PRIVATE KEY-----
[key goes here]
-----END OPENSSH PRIVATE KEY-----

you need to generate the public/private key pair using:

ssh-keygen -m pem

this will give you a private key that looks like:

-----BEGIN RSA PRIVATE KEY-----
Proc-Type: 4,ENCRYPTED
DEK-Info: [dec info goes here]

[key goes here]
-----END RSA PRIVATE KEY-----

then on the target machine you need to paste the public key into the file /home/[user]/.ssh/authorized_keys

and the private key into the configuration for the guacamole connection