File tree Expand file tree Collapse file tree 3 files changed +13
-2
lines changed
Expand file tree Collapse file tree 3 files changed +13
-2
lines changed Original file line number Diff line number Diff line change 1+ FROM postgres:15
2+
3+ RUN apt-get update \
4+ && apt-get install --no-install-recommends -y \
5+ postgresql-15-postgis-3
Original file line number Diff line number Diff line change @@ -36,7 +36,9 @@ services:
3636 restart : unless-stopped
3737
3838 postgres :
39- image : postgis/postgis:15-3.5
39+ build :
40+ context : .
41+ dockerfile : ./Dockerfile.postgres
4042 restart : unless-stopped
4143 networks :
4244 - default
Original file line number Diff line number Diff line change 1- FROM postgis/postgis:14-3.5
1+ FROM postgres:14
2+
3+ RUN apt-get update \
4+ && apt-get install --no-install-recommends -y \
5+ postgresql-14-postgis-3
26
37# Add db init script to install OSM-specific Postgres user.
48ADD docker/postgres/openstreetmap-postgres-init.sh /docker-entrypoint-initdb.d/
You can’t perform that action at this time.
0 commit comments