05d79e8ba6
Signed-off-by: Helder Correia <174525+helderco@users.noreply.github.com>
16 lines
294 B
CUE
16 lines
294 B
CUE
package main
|
|
|
|
import (
|
|
"dagger.io/dagger"
|
|
"universe.dagger.io/docker/cli"
|
|
)
|
|
|
|
dagger.#Plan & {
|
|
client: filesystem: "/var/run/docker.sock": read: contents: dagger.#Service
|
|
|
|
actions: run: cli.#Run & {
|
|
host: client.filesystem."/var/run/docker.sock".read.contents
|
|
command: name: "info"
|
|
}
|
|
}
|