Skip to content

Commit

Permalink
use 14.2 docker image
Browse files Browse the repository at this point in the history
  • Loading branch information
hillalex committed May 11, 2022
1 parent 88e66be commit c9a55b2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM postgres:10.3
FROM postgres:14.2
COPY bin /montagu-bin
ENV PATH="/montagu-bin:$PATH"
ENV POSTGRES_DB montagu
Expand All @@ -14,7 +14,7 @@ RUN cat /etc/montagu/postgresql.conf /etc/montagu/postgresql.test.conf.in > \
RUN cat /etc/montagu/postgresql.conf /etc/montagu/postgresql.production.conf.in > \
/etc/montagu/postgresql.production.conf
RUN chown -R postgres:postgres /etc/montagu
RUN ./docker-entrypoint.sh --version
RUN docker-entrypoint.sh --version

RUN cp /montagu-bin/create-users.sh /docker-entrypoint-initdb.d/

Expand Down
2 changes: 1 addition & 1 deletion bin/start-with-config.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
set -ex
CONFIG_FILE=$1
shift
exec /docker-entrypoint.sh $* -c config_file=$CONFIG_FILE
exec docker-entrypoint.sh $* -c config_file=$CONFIG_FILE

0 comments on commit c9a55b2

Please sign in to comment.