Dagger
Search

postgres

No long description provided.

Installation

dagger install github.com/grouville/daggerverse-tom/postgres@2b30c86c46201e470748df42505da8e77af3bd54

Entrypoint

Return Type
Postgres
Example
func (m *myModule) example() *Postgres  {
	return dag.
			Postgres()
}

Types

Postgres πŸ”—

user() πŸ”—

Return Type
Secret !
Example
func (m *myModule) example() *Secret  {
	return dag.
			Postgres().
			User()
}

password() πŸ”—

Return Type
Secret !
Example
func (m *myModule) example() *Secret  {
	return dag.
			Postgres().
			Password()
}

name() πŸ”—

Return Type
String !
Example
func (m *myModule) example(ctx context.Context) string  {
	return dag.
			Postgres().
			Name(ctx)
}

port() πŸ”—

Return Type
Integer !
Example
func (m *myModule) example(ctx context.Context) int  {
	return dag.
			Postgres().
			Port(ctx)
}

version() πŸ”—

Return Type
String !
Example
func (m *myModule) example(ctx context.Context) string  {
	return dag.
			Postgres().
			Version(ctx)
}

configFile() πŸ”—

Return Type
File !
Example
func (m *myModule) example() *File  {
	return dag.
			Postgres().
			ConfigFile()
}

initScripts() πŸ”—

Return Type
[InitScript ! ] !
Example
func (m *myModule) example() []*PostgresInitScript  {
	return dag.
			Postgres().
			InitScripts()
}

cache() πŸ”—

Return Type
Boolean !
Example
func (m *myModule) example(ctx context.Context) bool  {
	return dag.
			Postgres().
			Cache(ctx)
}

withCredential() πŸ”—

WithCredential adds a user and a password configuration to the postgresSQL database. The values will be set in container as secret variables: POSTGRES_USER POSTGRES_PASSWORD.

Return Type
Postgres !
Arguments
NameTypeDefault ValueDescription
userSecret !-No description provided
passwordSecret !-No description provided
Example
func (m *myModule) example(user *Secret, password *Secret) *Postgres  {
	return dag.
			Postgres().
			WithCredential(user, password)
}

withPort() πŸ”—

WithPort configs an exposed port on the container.

Return Type
Postgres !
Arguments
NameTypeDefault ValueDescription
portInteger !-No description provided
Example
func (m *myModule) example(port int) *Postgres  {
	return dag.
			Postgres().
			WithPort(port)
}

withDatabaseName() πŸ”—

WithDatabaseName sets the name of the database that will be created on start. It will be set in the container as POSTGRES_DB, if it’s not set, the database’s name will be the user’s one.

Return Type
Postgres !
Arguments
NameTypeDefault ValueDescription
nameString !-No description provided
Example
func (m *myModule) example(name string) *Postgres  {
	return dag.
			Postgres().
			WithDatabaseName(name)
}

withCache() πŸ”—

Return Type
Postgres !
Arguments
NameTypeDefault ValueDescription
cacheBoolean !-No description provided
Example
func (m *myModule) example(cache bool) *Postgres  {
	return dag.
			Postgres().
			WithCache(cache)
}

withVersion() πŸ”—

WithVersion sets the version of postgresql to pull from the registry.

Return Type
Postgres !
Arguments
NameTypeDefault ValueDescription
versionString !-No description provided
Example
func (m *myModule) example(version string) *Postgres  {
	return dag.
			Postgres().
			WithVersion(version)
}

withConfigFile() πŸ”—

WithConfigFile adds an extra config file to the postgres database. This file will be copied in the container to /usr/share/postgresql/postgresql.conf

Return Type
Postgres !
Arguments
NameTypeDefault ValueDescription
fileFile !-No description provided
Example
func (m *myModule) example(file *File) *Postgres  {
	return dag.
			Postgres().
			WithConfigFile(file)
}

withInitScript() πŸ”—

WithInitScript adds a script to execute when the database is started. You can call this function multiple times to add multiple scripts. These scripts are stored in a map, so it’s recommended to name with a numeric value at the beginning to make sure they are executed in the correct order. For example 1-init.sql, 2-new-tabs.sql…

Theses files will be copied to /docker-entrypoint-initdb.db

Return Type
Postgres !
Arguments
NameTypeDefault ValueDescription
nameString !-No description provided
scriptFile !-No description provided
Example
func (m *myModule) example(name string, script *File) *Postgres  {
	return dag.
			Postgres().
			WithInitScript(name, script)
}

database() πŸ”—

Database returns a ready to run Postgres container with all configuration applied.

Return Type
Container !
Example
func (m *myModule) example() *Container  {
	return dag.
			Postgres().
			Database()
}

cli() πŸ”—

Client returns a configured client with user and password set. Note: if you want to set the host, you can append this option on usage

Return Type
Container !
Example
func (m *myModule) example() *Container  {
	return dag.
			Postgres().
			Cli()
}

InitScript πŸ”—

file() πŸ”—

Return Type
File !
Example
Function PostgresInitScript.file is not accessible from the postgres module

name() πŸ”—

Return Type
String !
Example
Function PostgresInitScript.name is not accessible from the postgres module