ckan/postgresql/docker-entrypoint-initdb.d/30_setup_test_databases.sql
Brett d621fb62df Initial Security updates
- Update database user names and passwords
- The CKAN database is created with a new SQL script in the docker-entrypoint-initdb.d/ directory
- Remove host port for CKAN container
- now has a front-end network for NGINX and a back-end network for the rest of the containers, plus NGINX
2023-05-31 14:26:56 +02:00

3 lines
127 B
SQL
Executable File

CREATE DATABASE ckan_test OWNER ckandbuser ENCODING 'utf-8';
CREATE DATABASE datastore_test OWNER ckandbuser ENCODING 'utf-8';