Skip to content

Commit 72d848f

Browse files
authored
chore: add PostgreSQL 15 images with PostGIS (cloudnative-pg#21)
Closes cloudnative-pg#20 Signed-off-by: Jonathan Gonzalez V <[email protected]>
1 parent 7f34dfa commit 72d848f

File tree

3 files changed

+500
-0
lines changed

3 files changed

+500
-0
lines changed

PostGIS/15/.versions.json

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"BARMAN_VERSION": "3.1.0",
3+
"IMAGE_RELEASE_VERSION": "1",
4+
"POSTGIS_IMAGE_LAST_UPDATED": "2022-10-17T06:24:09.563303Z",
5+
"POSTGIS_IMAGE_VERSION": "15-3.3"
6+
}

PostGIS/15/Dockerfile

+52
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
# vim:set ft=dockerfile:
2+
#
3+
# Copyright The CloudNativePG Contributors
4+
#
5+
# Licensed under the Apache License, Version 2.0 (the "License");
6+
# you may not use this file except in compliance with the License.
7+
# You may obtain a copy of the License at
8+
# 
9+
# http://www.apache.org/licenses/LICENSE-2.0
10+
#
11+
# Unless required by applicable law or agreed to in writing, software
12+
# distributed under the License is distributed on an "AS IS" BASIS,
13+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14+
# See the License for the specific language governing permissions and
15+
# limitations under the License.
16+
#
17+
FROM postgis/postgis:15-3.3
18+
19+
# Do not split the description, otherwise we will see a blank space in the labels
20+
LABEL name="PostgreSQL + PostGIS Container Images" \
21+
vendor="The CloudNativePG Contributors" \
22+
version="${PG_VERSION}" \
23+
release="1" \
24+
summary="PostgreSQL + PostGIS Container images." \
25+
description="This Docker image contains PostgreSQL, PostGIS and Barman Cloud based on Postgres 15-3.3."
26+
27+
COPY requirements.txt /
28+
29+
# Install pgaudit
30+
RUN set -xe; \
31+
apt-get update; \
32+
apt-get install -y --no-install-recommends \
33+
"postgresql-${PG_MAJOR}-pgaudit" ;\
34+
rm -fr /tmp/* ; \
35+
rm -rf /var/lib/apt/lists/*;
36+
37+
# Install barman-cloud
38+
RUN set -xe; \
39+
apt-get update; \
40+
apt-get install -y --no-install-recommends \
41+
python3-pip \
42+
python3-psycopg2 \
43+
python3-setuptools \
44+
; \
45+
pip3 install --upgrade pip; \
46+
# TODO: Remove --no-deps once https://github.com/pypa/pip/issues/9644 is solved
47+
pip3 install --no-deps -r requirements.txt; \
48+
rm -rf /var/lib/apt/lists/*;
49+
50+
# Change the uid of postgres to 26
51+
RUN usermod -u 26 postgres
52+
USER 26

0 commit comments

Comments
 (0)