Skip to content

Commit

Permalink
Add Postgis versions (#148)
Browse files Browse the repository at this point in the history
  • Loading branch information
DerekRoberts authored Jan 6, 2025
1 parent 287da51 commit 26a2aa3
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 0 deletions.
5 changes: 5 additions & 0 deletions postgis/13/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
FROM postgis/postgis:16-3.4

# Health check and non-privileged user
HEALTHCHECK --interval=15s --timeout=5s --retries=3 CMD [ "pg_isready" ]
USER postgres
5 changes: 5 additions & 0 deletions postgis/14/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
FROM postgis/postgis:14-3.5

# Health check and non-privileged user
HEALTHCHECK --interval=15s --timeout=5s --retries=3 CMD [ "pg_isready" ]
USER postgres
5 changes: 5 additions & 0 deletions postgis/15/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
FROM postgis/postgis:15-3.5

# Health check and non-privileged user
HEALTHCHECK --interval=15s --timeout=5s --retries=3 CMD [ "pg_isready" ]
USER postgres
5 changes: 5 additions & 0 deletions postgis/17/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
FROM postgis/postgis:17-3.5

# Health check and non-privileged user
HEALTHCHECK --interval=15s --timeout=5s --retries=3 CMD [ "pg_isready" ]
USER postgres

0 comments on commit 26a2aa3

Please sign in to comment.