-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #293 from OpenHistoricalMap/staging
DB migration postgres 11 to 14
- Loading branch information
Showing
14 changed files
with
1,788 additions
and
72 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,22 @@ | ||
FROM postgres:11 | ||
RUN rm /etc/apt/sources.list.d/pgdg.list | ||
RUN sed -i s/deb.debian.org/archive.debian.org/g /etc/apt/sources.list | ||
RUN sed -i 's|security.debian.org|archive.debian.org|g' /etc/apt/sources.list | ||
RUN sed -i '/stretch-updates/d' /etc/apt/sources.list | ||
RUN apt-get update && apt-get -y install apt-transport-https | ||
RUN echo "deb [ signed-by=/usr/local/share/keyrings/postgres.gpg.asc ] https://apt-archive.postgresql.org/pub/repos/apt/ stretch-pgdg main 11" >/etc/apt/sources.list.d/pgdg.list | ||
RUN apt-get update && apt-get install -y \ | ||
postgresql-server-dev-11 \ | ||
FROM postgres:14 | ||
RUN apt-get update \ | ||
&& apt-get install -y \ | ||
postgresql-server-dev-14 \ | ||
make \ | ||
build-essential \ | ||
postgresql-11-postgis-2.5 && \ | ||
apt-get clean && rm -rf /var/lib/apt/lists/* | ||
postgresql-14-postgis-3 \ | ||
&& apt-get clean && rm -rf /var/lib/apt/lists/* | ||
|
||
ADD functions/functions.sql /usr/local/share/osm-db-functions.sql | ||
ADD docker_postgres.sh /docker-entrypoint-initdb.d/ | ||
RUN mkdir -p db | ||
RUN mkdir -p lib | ||
ADD functions/ db/functions/ | ||
ADD lib/quad_tile/ lib/quad_tile/ | ||
|
||
RUN make -C db/functions/ | ||
RUN chown -R postgres lib/ | ||
RUN chown -R postgres db/ | ||
COPY start.sh /usr/local/bin/ | ||
COPY config/postgresql.*.conf /etc/postgresql/ | ||
|
||
CMD ["/usr/local/bin/start.sh"] |
Oops, something went wrong.