first commit
This commit is contained in:
3
misc/containers/postgres/Dockerfile
Normal file
3
misc/containers/postgres/Dockerfile
Normal file
@ -0,0 +1,3 @@
|
||||
FROM postgres:12-alpine
|
||||
|
||||
COPY ./initdb.d /docker-entrypoint-initdb.d
|
10
misc/containers/postgres/initdb.d/init-databases.sh
Normal file
10
misc/containers/postgres/initdb.d/init-databases.sh
Normal file
@ -0,0 +1,10 @@
|
||||
#!/bin/bash
|
||||
|
||||
set -e
|
||||
|
||||
psql -v ON_ERROR_STOP=1 --username "$POSTGRES_USER" --dbname "$POSTGRES_DB" <<-EOSQL
|
||||
CREATE USER jwtserver WITH ENCRYPTED PASSWORD 'jwtserver';
|
||||
CREATE DATABASE jwtserver;
|
||||
GRANT ALL PRIVILEGES ON DATABASE jwtserver TO jwtserver;
|
||||
ALTER DATABASE jwtserver OWNER TO jwtserver;
|
||||
EOSQL
|
Reference in New Issue
Block a user