diff options
| author | Joel Klinghed <the_jk@spawned.biz> | 2024-10-31 22:39:09 +0100 |
|---|---|---|
| committer | Joel Klinghed <the_jk@spawned.biz> | 2024-10-31 22:40:33 +0100 |
| commit | 77f2ab719c50b27b4aeca4d7cbd4b1398337ed78 (patch) | |
| tree | 299be1dec867f10921dcae726c5fa332f8fd859f /libs/sftp/src/test/docker/docker-compose.yml | |
| parent | 284a09b19bc3be8849fc71acd0ad407c43ec7380 (diff) | |
sftp: Let a selection of tests use private key authentication
Tests switch between password authentication and private key
authentication depending on the hash of the method name.
It's a fairly even spread.
Update the docker config, it never wanted a pem file, it wanted
a ssh-rsa format public key.
Diffstat (limited to 'libs/sftp/src/test/docker/docker-compose.yml')
| -rw-r--r-- | libs/sftp/src/test/docker/docker-compose.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/sftp/src/test/docker/docker-compose.yml b/libs/sftp/src/test/docker/docker-compose.yml index 973a942..d8321cd 100644 --- a/libs/sftp/src/test/docker/docker-compose.yml +++ b/libs/sftp/src/test/docker/docker-compose.yml @@ -6,7 +6,7 @@ services: volumes: - ./ssh_host_ed25519_key:/etc/ssh/ssh_host_ed25519_key - ./ssh_host_rsa_key:/etc/ssh/ssh_host_rsa_key - - ./user_public.pub:/home/user/.ssh/keys/id_rsa.pub:ro + - ./user_public.ssh:/home/user/.ssh/keys/id_rsa:ro - ../../../build/test-share:/home/user/share ports: - "127.0.0.1:10022:22" |
