8000 Release new postgres versions by hvancamp · Pull Request #41 · xenit-eu/docker-postgres · GitHub
[go: up one dir, main page]

Skip to content

Release new postgres versions #41

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 6 commits into from
Jul 2, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 11 additions & 11 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
plugins {
id "eu.xenit.docker" version "5.2.0" apply false // Have a look at the releases to find the latest one
id "eu.xenit.docker" version "5.3.0" apply false // Have a look at the releases to find the latest one
}

project(':9.5') {
Expand All @@ -11,36 +11,36 @@ project(':9.5') {

project(':9.6') {
project.ext {
baseImage = 'postgres:9.6.21'
tags = ['9', '9.6', '9.6.21']
baseImage = 'postgres:9.6.22'
tags = ['9', '9.6', '9.6.22']
}
}

project(':10') {
project.ext {
baseImage = 'postgres:10.16'
tags = ['10', '10.16']
baseImage = 'postgres:10.17'
tags = ['10', '10.17']
}
}

project(':11') {
project.ext {
baseImage = 'postgres:11.11'
tags = ['11', '11.11']
baseImage = 'postgres:11.12'
tags = ['11', '11.12']
}
}

project(':12') {
project.ext {
baseImage = 'postgres:12.6'
tags = ['12', '12.6']
baseImage = 'postgres:12.7'
tags = ['12', '12.7']
}
}

project(':13') {
project.ext {
baseImage = 'postgres:13.2'
tags = ['13', '13.2', 'latest']
baseImage = 'postgres:13.3'
tags = ['13', '13.3', 'latest']
}
}

Expand Down
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-6.8.3-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-7.1-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
2 changes: 0 additions & 2 deletions src/main/docker/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
ARG BASEIMAGE


FROM $BASEIMAGE
MAINTAINER thijs.lemmens@xenit.eu

ARG PGVERSION
ARG WALGVERSION
Expand Down
0