Add PostgreSQL template
This commit is contained in:
@@ -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`)
|
||||
|
||||
@@ -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",
|
||||
|
||||
Reference in New Issue
Block a user