Skip to content

Commit

Permalink
postgresql: remove version strings
Browse files Browse the repository at this point in the history
  • Loading branch information
bryteise committed Jun 17, 2024
1 parent e1d7e33 commit 416e857
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions postgres/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -34,10 +34,10 @@ FROM core

COPY --from=builder /install_root /

ENV PATH $PATH:/usr/libexec/postgresql11
ENV PATH $PATH:/usr/libexec/postgresql
ENV PGDATA /var/lib/pgsql/data
RUN sed -i "s|#listen_addresses.*|listen_addresses = '*'|" /usr/share/postgresql11/postgresql.conf.sample && \
mkdir -p /run/postgresql11 && chown -R postgres:postgres /run/postgresql11 && \
RUN sed -i "s|#listen_addresses.*|listen_addresses = '*'|" /usr/share/postgresql/postgresql.conf.sample && \
mkdir -p /run/postgresql && chown -R postgres:postgres /run/postgresql && \
mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && \
mkdir /docker-entrypoint-initdb.d && \
mkdir -p /usr/local/bin
Expand Down

0 comments on commit 416e857

Please sign in to comment.