15 lines
391 B
Plaintext
15 lines
391 B
Plaintext
|
|
import taskservs.version as schema
|
||
|
|
|
||
|
|
# Containerd taskserv configuration
|
||
|
|
_version = schema.TaskservVersion {
|
||
|
|
name = "postgres"
|
||
|
|
version = schema.Version {
|
||
|
|
current = "16"
|
||
|
|
source = "https://hub.docker.com/_/postgres"
|
||
|
|
site = "https://www.postgresql.org"
|
||
|
|
# Pinned major version for stability
|
||
|
|
check_latest = True
|
||
|
|
grace_period = 86400
|
||
|
|
}
|
||
|
|
}
|