Przeglądaj źródła

Fix postgres quote formatting

Tianon Gravi 10 lat temu
rodzic
commit
13c27f6554
2 zmienionych plików z 8 dodań i 2 usunięć
  1. 4 1
      postgres/README.md
  2. 4 1
      postgres/content.md

+ 4 - 1
postgres/README.md

@@ -25,7 +25,10 @@ PostgreSQL implements the majority of the SQL:2011 standard, is ACID-compliant a
 
 	docker run --name some-postgres -e POSTGRES_PASSWORD=mysecretpassword -d postgres
 
-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)
+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)
 
 ## connect to it from an application
 

+ 4 - 1
postgres/content.md

@@ -14,7 +14,10 @@ PostgreSQL implements the majority of the SQL:2011 standard, is ACID-compliant a
 
 	docker run --name some-postgres -e POSTGRES_PASSWORD=mysecretpassword -d postgres
 
-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)
+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)
 
 ## connect to it from an application