mirror of
https://github.com/Dokploy/templates
synced 2025-06-26 18:16:07 +00:00
fix: correct password handling syntax in Supabase template SQL scripts
- Updated the password setting syntax to use backticks for command substitution. - Ensured the echo command for the POSTGRES_PASSWORD variable is correctly formatted.
This commit is contained in:
parent
0b41b1513d
commit
e422bf9ecd
@ -325,7 +325,7 @@ config:
|
||||
- filePath: /volumes/db/roles.sql
|
||||
content: |
|
||||
-- NOTE: change to your own passwords for production environments
|
||||
\\set pgpass \`echo "$POSTGRES_PASSWORD"\`
|
||||
\set pgpass `echo "$POSTGRES_PASSWORD"`
|
||||
|
||||
ALTER USER authenticator WITH PASSWORD :'pgpass';
|
||||
ALTER USER pgbouncer WITH PASSWORD :'pgpass';
|
||||
|
Loading…
Reference in New Issue
Block a user