mirror of
https://github.com/fergalmoran/dss.docker.git
synced 2025-12-22 09:18:29 +00:00
6 lines
249 B
Bash
Executable File
6 lines
249 B
Bash
Executable File
#!/bin/bash
|
|
su - postgres
|
|
psql -h 127.0.0.1 -c "CREATE USER deepsouthsounds WITH PASSWORD 'deepsouthsounds'"
|
|
psql -h 127.0.0.1 -c "CREATE DATABASE deepsouthsounds OWNER deepsouthsounds"
|
|
psql -h 127.0.0.1 deepsouthsounds < /tmp/20151025-203518.sql
|