diff --git a/.env b/.env index 32de312..ba7207e 100644 --- a/.env +++ b/.env @@ -17,7 +17,6 @@ POSTGRES_USER=postgres POSTGRES_PASSWORD=postgres POSTGRES_DB=postgres POSTGRES_HOST=db -PGDATA=/var/lib/postgresql/data/db CKAN_DB_USER=ckandbuser CKAN_DB_PASSWORD=ckandbpassword CKAN_DB=ckandb diff --git a/docker-compose.yml b/docker-compose.yml index 5bf662f..9411d1c 100755 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -68,7 +68,6 @@ services: - POSTGRES_USER - POSTGRES_PASSWORD - POSTGRES_DB - - PGDATA - CKAN_DB_USER - CKAN_DB_PASSWORD - CKAN_DB diff --git a/postgresql/Dockerfile b/postgresql/Dockerfile index a1448d0..121a711 100755 --- a/postgresql/Dockerfile +++ b/postgresql/Dockerfile @@ -1,7 +1,4 @@ FROM postgres:12-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 - # Include extra setup scripts (eg datastore) ADD docker-entrypoint-initdb.d /docker-entrypoint-initdb.d \ No newline at end of file