From ace6d8659c227eeb3004b587e7054d075186cd07 Mon Sep 17 00:00:00 2001 From: Lucas Ritzdorf <42657792+LRitzdorf@users.noreply.github.com> Date: Wed, 17 Jul 2024 15:37:23 -0600 Subject: [PATCH] quickstart(tpm-manager): bind-mount host's `.ssh` into container This is, usually, required so that Ansible in the container can SSH to nodes. --- quickstart/tpm-manager.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/quickstart/tpm-manager.yml b/quickstart/tpm-manager.yml index 0666f60..7688987 100644 --- a/quickstart/tpm-manager.yml +++ b/quickstart/tpm-manager.yml @@ -11,6 +11,10 @@ services: - OPAAL_URL=http://opaal:3333 - HSM_URL=http://smd:27779 - ANSIBLE_HOST_KEY_CHECKING=False + volumes: + - type: bind + source: /root/.ssh + target: /root/.ssh depends_on: opaal: condition: service_healthy