context-dir-user
No long description provided.
Installation
dagger install bitbucket.org/dagger-modules/dagger-test-modules-public/context-dir-user@ca6493ac2a5ed309c44565121b7bdd20a17b1abbEntrypoint
Return Type
ContextDirUser Example
dagger -m bitbucket.org/dagger-modules/dagger-test-modules-public/context-dir-user@ca6493ac2a5ed309c44565121b7bdd20a17b1abb call \
func (m *MyModule) Example() *dagger.ContextDirUser {
return dag.
Contextdiruser()
}@function
def example() -> dagger.ContextDirUser:
return (
dag.context_dir_user()
)@func()
example(): ContextDirUser {
return dag
.contextDirUser()
}Types
ContextDirUser 🔗
absolutePath() 🔗
Return Type
Directory ! Example
dagger -m bitbucket.org/dagger-modules/dagger-test-modules-public/context-dir-user@ca6493ac2a5ed309c44565121b7bdd20a17b1abb call \
absolute-pathfunc (m *MyModule) Example() *dagger.Directory {
return dag.
Contextdiruser().
Absolutepath()
}@function
def example() -> dagger.Directory:
return (
dag.context_dir_user()
.absolutepath()
)@func()
example(): Directory {
return dag
.contextDirUser()
.absolutePath()
}absolutePathSubdir() 🔗
Return Type
Directory ! Example
dagger -m bitbucket.org/dagger-modules/dagger-test-modules-public/context-dir-user@ca6493ac2a5ed309c44565121b7bdd20a17b1abb call \
absolute-path-subdirfunc (m *MyModule) Example() *dagger.Directory {
return dag.
Contextdiruser().
Absolutepathsubdir()
}@function
def example() -> dagger.Directory:
return (
dag.context_dir_user()
.absolutepathsubdir()
)@func()
example(): Directory {
return dag
.contextDirUser()
.absolutePathSubdir()
}relativePath() 🔗
Return Type
Directory ! Example
dagger -m bitbucket.org/dagger-modules/dagger-test-modules-public/context-dir-user@ca6493ac2a5ed309c44565121b7bdd20a17b1abb call \
relative-pathfunc (m *MyModule) Example() *dagger.Directory {
return dag.
Contextdiruser().
Relativepath()
}@function
def example() -> dagger.Directory:
return (
dag.context_dir_user()
.relativepath()
)@func()
example(): Directory {
return dag
.contextDirUser()
.relativePath()
}relativePathSubdir() 🔗
Return Type
Directory ! Example
dagger -m bitbucket.org/dagger-modules/dagger-test-modules-public/context-dir-user@ca6493ac2a5ed309c44565121b7bdd20a17b1abb call \
relative-path-subdirfunc (m *MyModule) Example() *dagger.Directory {
return dag.
Contextdiruser().
Relativepathsubdir()
}@function
def example() -> dagger.Directory:
return (
dag.context_dir_user()
.relativepathsubdir()
)@func()
example(): Directory {
return dag
.contextDirUser()
.relativePathSubdir()
}