From 4e3a102886a3d102809f0be1114d622af8523ad2 Mon Sep 17 00:00:00 2001 From: Alex MacArthur Date: Fri, 13 Sep 2019 08:11:33 -0500 Subject: [PATCH] Update Postgres documentation. --- postgres/README.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/postgres/README.md b/postgres/README.md index 4f58456..4f3363a 100644 --- a/postgres/README.md +++ b/postgres/README.md @@ -1,5 +1,11 @@ # Postgres w/ Docker Compose +## Super User Authentication + +Username: `root` + +Password: `password` + ## Enter the Container w/ Bash `docker-compose exec --user root db /bin/bash` @@ -8,16 +14,10 @@ `docker-compose exec --user root db psql -h localhost -U root` -## Super User Authentication - -Username: `root` - -Password: `password` - ## Create a DB While inside the shell, run the following: ``` -CREATE DATABASE mydatabase; +CREATE DATABASE "mydatabase"; ```