30 lines
581 B
CUE
30 lines
581 B
CUE
|
package main
|
||
|
|
||
|
import (
|
||
|
"dagger.io/dagger"
|
||
|
"universe.dagger.io/docker"
|
||
|
)
|
||
|
|
||
|
dagger.#Plan & {
|
||
|
client: filesystem: {
|
||
|
"/home/user/.ssh/id_rsa": read: contents: dagger.#Secret
|
||
|
"/home/user/.ssh/known_hosts": read: contents: dagger.#Secret
|
||
|
}
|
||
|
|
||
|
actions: {
|
||
|
build: docker.#Build & {
|
||
|
...
|
||
|
}
|
||
|
|
||
|
load: docker.#Load & {
|
||
|
image: build.output
|
||
|
tag: "myimage:v2"
|
||
|
host: "ssh://root@93.184.216.34"
|
||
|
ssh: {
|
||
|
key: client.filesystem."/home/user/.ssh/id_rsa".read.contents
|
||
|
knownHosts: client.filesystem."/home/user/.ssh/known_hosts".read.contents
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|