commit
b805d37cb0
@ -1,18 +1,16 @@
|
|||||||
package docker
|
package docker
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"dagger.io/dagger/op"
|
|
||||||
"dagger.io/alpine"
|
"dagger.io/alpine"
|
||||||
)
|
)
|
||||||
|
|
||||||
#Client: #up: [
|
// A container image to run the Docker client
|
||||||
op.#Load & {
|
#Client: alpine.#Image & {
|
||||||
from: alpine.#Image & {
|
package: {
|
||||||
package: bash: true
|
bash: true
|
||||||
package: jq: true
|
jq: true
|
||||||
package: curl: true
|
curl: true
|
||||||
package: "openssh-client": true
|
"openssh-client": true
|
||||||
package: "docker-cli": true
|
"docker-cli": true
|
||||||
}
|
}
|
||||||
},
|
}
|
||||||
]
|
|
||||||
|
@ -1,3 +1,4 @@
|
|||||||
|
// DEPRECATED: see dagger.io/os
|
||||||
package file
|
package file
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
@ -9,16 +9,23 @@ import (
|
|||||||
// A git repository
|
// A git repository
|
||||||
#Repository: {
|
#Repository: {
|
||||||
|
|
||||||
|
// Git remote.
|
||||||
|
// Example: "https://github.com/dagger/dagger")
|
||||||
remote: string @dagger(input)
|
remote: string @dagger(input)
|
||||||
|
|
||||||
|
// Git ref: can be a commit, tag or branch.
|
||||||
|
// Example: "main"
|
||||||
ref: string @dagger(input)
|
ref: string @dagger(input)
|
||||||
subdir: string | *"" @dagger(input)
|
|
||||||
|
// (optional) Subdirectory
|
||||||
|
subdir: string | *null @dagger(input)
|
||||||
|
|
||||||
#up: [
|
#up: [
|
||||||
op.#FetchGit & {
|
op.#FetchGit & {
|
||||||
"remote": remote
|
"remote": remote
|
||||||
"ref": ref
|
"ref": ref
|
||||||
},
|
},
|
||||||
if subdir != "" {
|
if subdir != null {
|
||||||
op.#Subdir & {
|
op.#Subdir & {
|
||||||
dir: subdir
|
dir: subdir
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user