Skip to content

Commit 13c27f6

Browse files
committed
Fix postgres quote formatting
1 parent 3e15cb2 commit 13c27f6

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

postgres/README.md

+4-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,10 @@ PostgreSQL implements the majority of the SQL:2011 standard, is ACID-compliant a
2525

2626
docker run --name some-postgres -e POSTGRES_PASSWORD=mysecretpassword -d postgres
2727

28-
This image includes `EXPOSE 5432` (the postgres port), so standard container linking will make it automatically available to the linked containers. The default `postgres` user and database are created in the entrypoint with `initdb`. > The postgres database is a default database meant for use by users, utilities > and third party applications. > [postgresql.org/docs](http://www.postgresql.org/docs/9.3/interactive/app-initdb.html)
28+
This image includes `EXPOSE 5432` (the postgres port), so standard container linking will make it automatically available to the linked containers. The default `postgres` user and database are created in the entrypoint with `initdb`.
29+
30+
> The postgres database is a default database meant for use by users, utilities and third party applications.
31+
> [postgresql.org/docs](http://www.postgresql.org/docs/9.3/interactive/app-initdb.html)
2932
3033
## connect to it from an application
3134

postgres/content.md

+4-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,10 @@ PostgreSQL implements the majority of the SQL:2011 standard, is ACID-compliant a
1414

1515
docker run --name some-postgres -e POSTGRES_PASSWORD=mysecretpassword -d postgres
1616

17-
This image includes `EXPOSE 5432` (the postgres port), so standard container linking will make it automatically available to the linked containers. The default `postgres` user and database are created in the entrypoint with `initdb`. > The postgres database is a default database meant for use by users, utilities > and third party applications. > [postgresql.org/docs](http://www.postgresql.org/docs/9.3/interactive/app-initdb.html)
17+
This image includes `EXPOSE 5432` (the postgres port), so standard container linking will make it automatically available to the linked containers. The default `postgres` user and database are created in the entrypoint with `initdb`.
18+
19+
> The postgres database is a default database meant for use by users, utilities and third party applications.
20+
> [postgresql.org/docs](http://www.postgresql.org/docs/9.3/interactive/app-initdb.html)
1821
1922
## connect to it from an application
2023

0 commit comments

Comments
 (0)