Add PostgreSQL template

This commit is contained in:
Anthony Lapenna
2016-09-20 16:44:26 +12:00
parent e4b6a73d44
commit 29a139d2f1
2 changed files with 17 additions and 0 deletions

View File

@@ -95,6 +95,7 @@ $ docker run -d -p "8080:80" -v "${PWD}/templates.json:/usr/share/nginx/html/tem
* Nginx (based on `nginx:latest`)
* Httpd (based on `httpd:latest`)
* MySQL (based on `mysql:latest`)
* PostgreSQL (based on `postgres:latest`)
* Mongo (based on `mongo:latest`)
* Elasticsearch (based on `elasticsearch:latest`)
* Redis (based on `redis:latest`)

View File

@@ -40,6 +40,22 @@
],
"volumes": ["/var/lib/mysql"]
},
{
"title": "PostgreSQL",
"description": "The most advanced open-source database",
"logo": "https://hub.docker.com/public/images/official/postgres.png",
"image": "postgres:latest",
"env": [
{
"name": "POSTGRES_PASSWORD",
"label": "Superuser password"
}
],
"ports": [
"5432/tcp"
],
"volumes": ["/var/lib/postgresql/data"]
},
{
"title": "Mongo",
"description": "Open-source document-oriented database",