Přejít na soubor
Giles Bradshaw 5f230f9a53
continuous-integration/drone/push Build is passing Podrobnosti
continuous-integration/drone Build is passing Podrobnosti
feat: save parameter
2020-10-24 13:39:33 +01:00
.drone feat: save parameter 2020-10-24 13:39:33 +01:00
git-hooks ci: jsonnet-drone@0.1.0 2020-08-28 21:54:34 +01:00
guacamole-postgresql feat: registry promotion 2020-09-25 10:08:40 +01:00
.gitignore ci: jsonnet-drone@0.1.0 2020-08-28 21:54:34 +01:00
.versionrc ci: tag message in change log 2020-08-11 13:20:37 +01:00
CHANGELOG.md chore(release): 0.0.6 2020-10-23 01:07:08 +01:00
README.md ci: jsonnet-drone@0.1.0 2020-08-28 21:54:34 +01:00
docker-compose.yml feat: print, build, save, registry, deploy 2020-10-23 01:06:11 +01:00
init-postgresql.sh feat: registry promotion 2020-09-25 10:08:40 +01:00
init-postgresql.sql ci: jsonnet-drone@0.1.0 2020-08-28 21:54:34 +01:00
package.json chore(release): 0.0.6 2020-10-23 01:07:08 +01:00
yarn.lock ci: jsonnet-drone@0.1.0 2020-08-28 21:54:34 +01:00

README.md

guacamole

secrets

  • postgres-password
  • postgres-user
  • postgres-db

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