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/tests/plan/proxy/incomplete_unix.cue

27 lines
461 B
CUE
Raw Normal View History

package main
import (
"alpha.dagger.io/europa/dagger/engine"
"alpha.dagger.io/dagger/op"
"alpha.dagger.io/alpine"
)
engine.#Plan & {
// should fail because incomplete value
proxy: dockerSocket: unix: string
actions: test: #up: [
op.#Load & {
from: alpine.#Image & {
package: "docker-cli": true
}
},
op.#Exec & {
always: true
mount: "/var/run/docker.sock": stream: proxy.dockerSocket.service
args: ["docker", "info"]
},
]
}