Skip to content

Commit 4e3a102

Browse files
Update Postgres documentation.
1 parent 3601ffb commit 4e3a102

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

postgres/README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Postgres w/ Docker Compose
22

3+
## Super User Authentication
4+
5+
Username: `root`
6+
7+
Password: `password`
8+
39
## Enter the Container w/ Bash
410

511
`docker-compose exec --user root db /bin/bash`
@@ -8,16 +14,10 @@
814

915
`docker-compose exec --user root db psql -h localhost -U root`
1016

11-
## Super User Authentication
12-
13-
Username: `root`
14-
15-
Password: `password`
16-
1717
## Create a DB
1818

1919
While inside the shell, run the following:
2020

2121
```
22-
CREATE DATABASE mydatabase;
22+
CREATE DATABASE "mydatabase";
2323
```

0 commit comments

Comments
 (0)