diff --git a/README.md b/README.md index 1332245..682ff3f 100644 --- a/README.md +++ b/README.md @@ -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`) diff --git a/templates.json b/templates.json index 9da98f6..b8c6b64 100644 --- a/templates.json +++ b/templates.json @@ -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",