Specify all configuration settings in config.yml.
[arvados.git] / docker / api / init_databases.sql.in
1 alter role postgres with encrypted password '@@POSTGRES_ROOT_PW@@';
2
3 create user @@ARVADOS_DEV_USER@@ with encrypted password '@@ARVADOS_DEV_PW@@';
4 create database @@ARVADOS_DEV_DB@@ with owner @@ARVADOS_DEV_USER@@;
5
6 create user @@ARVADOS_TEST_USER@@ with encrypted password '@@ARVADOS_TEST_PW@@';
7 create database @@ARVADOS_TEST_DB@@ with owner @@ARVADOS_TEST_USER@@;
8
9 create user @@ARVADOS_PROD_USER@@ with encrypted password '@@ARVADOS_PROD_PW@@';
10 create database @@ARVADOS_PROD_DB@@ with owner @@ARVADOS_PROD_USER@@;