Create init-db.sh

This commit is contained in:
Marco Gallegos
2025-06-24 09:45:27 -06:00
committed by GitHub
parent bdbcc38323
commit 1c96964a58

View File

@@ -0,0 +1,6 @@
#!/bin/bash
set -e
psql -v ON_ERROR_STOP=1 --username "$POSTGRES_USER" --dbname "$POSTGRES_DB" <<-EOSQL
CREATE DATABASE $N8N_DB_NAME;
CREATE DATABASE $EVOLUTION_DB_NAME;
EOSQL