Skip to content

Commit

Permalink
Fix docker demo postgres seed.
Browse files Browse the repository at this point in the history
  • Loading branch information
riclolsen committed Sep 16, 2024
1 parent 7b9135b commit 736d6d2
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion demo-docker/postgres_seed/init-user-db.sh
Original file line number Diff line number Diff line change
@@ -1,2 +1,5 @@
psql -h 127.0.0.1 -U postgres -w -f data/create_tables.sql template1 && psql -h 127.0.0.1 -U postgres -w -f data/metabaseappdb.sql metabaseappdb && psql -h 127.0.0.1 -U postgres -w -f data/grafanaappdb.sql grafanaappdb
#!/bin/bash
psql -h 127.0.0.1 -U postgres -w -f data/create_tables.sql template1
psql -h 127.0.0.1 -U postgres -w -f data/metabaseappdb.sql metabaseappdb
psql -h 127.0.0.1 -U postgres -w -f data/grafanaappdb.sql grafanaappdb

0 comments on commit 736d6d2

Please sign in to comment.