Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
FROM postgis/postgis:11-3.1
MAINTAINER asdrubal gonzalez <agpenton@gmail.com>
ARG P_ENV=""

ADD https://goo.gl/cvfonM /db/osm_shapefiles.sql.gz
RUN chmod 777 /db \
&& chmod 444 /db/osm_shapefiles.sql.gz
ADD postgresql.${P_ENV}.conf /etc/postgresql/postgresql.conf
ADD setup_osm.sql /db/setup_osm.sql
ADD setup_osm.sh /docker-entrypoint-initdb.d/00-setup_osm.sh
RUN chmod +x /docker-entrypoint-initdb.d/00-setup_osm.sh
Expand Down
Loading