Dagger
Search

tmate

No long description provided.

Installation

dagger install github.com/shykes/daggerverse/tmate@44a55985c47aba6db7c8c85c5d43433dcd7d5161

Entrypoint

Return Type
Tmate
Example
func (m *myModule) example() *Tmate  {
	return dag.
			Tmate()
}
@function
def example() -> dag.Tmate:
	return (
		dag.tmate()
	)
@func()
example(): Tmate {
	return dag
		.tmate()
}

Types

Tmate 🔗

source() 🔗

Return Type
Directory !
Example
Function Tmate.source is not accessible from the tmate module
func (m *myModule) example()   {
	return dag.
			Tmate().
			Source()
}
@function
def example() -> :
	return (
		dag.tmate()
		.source()
	)
@func()
example():  {
	return dag
		.tmate()
		.source()
}

buildEnvUbuntu() 🔗

Return Type
Container !
Example
Function Tmate.buildEnvUbuntu is not accessible from the tmate module
func (m *myModule) example()   {
	return dag.
			Tmate().
			BuildEnvUbuntu()
}
@function
def example() -> :
	return (
		dag.tmate()
		.build_env_ubuntu()
	)
@func()
example():  {
	return dag
		.tmate()
		.buildEnvUbuntu()
}

tmate() 🔗

Run tmate in a container

Return Type
Container !
Example
Function Tmate.tmate is not accessible from the tmate module
func (m *myModule) example()   {
	return dag.
			Tmate().
			Tmate()
}
@function
def example() -> :
	return (
		dag.tmate()
		.tmate()
	)
@func()
example():  {
	return dag
		.tmate()
		.tmate()
}

tmateWithEntrypoint() 🔗

Run tmate in a container

Return Type
Container !
Example
Function Tmate.tmateWithEntrypoint is not accessible from the tmate module
func (m *myModule) example()   {
	return dag.
			Tmate().
			TmateWithEntrypoint()
}
@function
def example() -> :
	return (
		dag.tmate()
		.tmate_with_entrypoint()
	)
@func()
example():  {
	return dag
		.tmate()
		.tmateWithEntrypoint()
}

buildEnvWolfi() 🔗

Return Type
Container !
Example
Function Tmate.buildEnvWolfi is not accessible from the tmate module
func (m *myModule) example()   {
	return dag.
			Tmate().
			BuildEnvWolfi()
}
@function
def example() -> :
	return (
		dag.tmate()
		.build_env_wolfi()
	)
@func()
example():  {
	return dag
		.tmate()
		.buildEnvWolfi()
}