This repository has been archived on 2024-04-08. You can view files and clone it, but cannot push or open issues or pull requests.
dagger/stdlib/docker/tests/command-ssh/command.cue

27 lines
497 B
CUE
Raw Normal View History

package docker
import (
"alpha.dagger.io/dagger"
)
TestConfig: {
host: dagger.#Input & {string}
user: dagger.#Input & {string}
key: dagger.#Input & {dagger.#Secret}
}
TestPassword: dagger.#Input & {dagger.#Secret}
TestSSH: client: #Command & {
command: #"""
docker $CMD && [ -f /run/secrets/password ]
"""#
ssh: {
host: TestConfig.host
user: TestConfig.user
key: TestConfig.key
}
secret: "/run/secrets/password": TestPassword
env: CMD: "version"
}