Skip to content

Commit

Permalink
Adds support for PostgreSQL 16 in Docker automation
Browse files Browse the repository at this point in the history
  • Loading branch information
m3hm3t committed Jan 23, 2025
1 parent 24614d3 commit 42b69e0
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions packaging_automation/publish_docker.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ class DockerImageType(Enum):
nightly = 3
postgres_14 = 4
postgres_15 = 5
postgres_16 = 6


class ManualTriggerType(Enum):
Expand Down Expand Up @@ -65,6 +66,11 @@ class ScheduleType(Enum):
"docker-tag": "pg15",
"schedule-type": ScheduleType.regular,
},
DockerImageType.postgres_16: {
"file-name": "postgres-16/Dockerfile",
"docker-tag": "pg16",
"schedule-type": ScheduleType.regular,
},
DockerImageType.nightly: {
"file-name": "nightly/Dockerfile",
"docker-tag": "nightly",
Expand Down

0 comments on commit 42b69e0

Please sign in to comment.