14 lines
435 B
Docker
14 lines
435 B
Docker
FROM postgis/postgis:14-3.2-alpine
|
|
|
|
# Allow connections; we don't map out any ports so only linked docker containers can connect
|
|
RUN echo "host all all 0.0.0.0/0 md5" >> /var/lib/postgresql/data/pg_hba.conf
|
|
|
|
# Customize default user/pass/db
|
|
ENV POSTGRES_DB ckan
|
|
ENV POSTGRES_USER ckan
|
|
ARG POSTGRES_PASSWORD
|
|
ARG DS_RO_PASS
|
|
|
|
# Include datastore setup scripts
|
|
COPY ./postgresql/docker-entrypoint-initdb.d /docker-entrypoint-initdb.d
|