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
Name | Type | Default Value | Description |
---|---|---|---|
user | Secret ! | - | No description provided |
password | Secret ! | - | 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
Name | Type | Default Value | Description |
---|---|---|---|
port | Integer ! | - | 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
Name | Type | Default Value | Description |
---|---|---|---|
name | String ! | - | No description provided |
Example
func (m *myModule) example(name string) *Postgres {
return dag.
Postgres().
WithDatabaseName(name)
}
withCache() π
Return Type
Postgres !
Arguments
Name | Type | Default Value | Description |
---|---|---|---|
cache | Boolean ! | - | 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
Name | Type | Default Value | Description |
---|---|---|---|
version | String ! | - | 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
Name | Type | Default Value | Description |
---|---|---|---|
file | File ! | - | 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
Name | Type | Default Value | Description |
---|---|---|---|
name | String ! | - | No description provided |
script | File ! | - | 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