-
Notifications
You must be signed in to change notification settings - Fork 98
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #217 from Hooverdan96/issue216_PostGres_9.x_RockOn
Issue216 PostgreSQL 9.5 rockon. Fixes #216
- Loading branch information
Showing
2 changed files
with
42 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
{ | ||
"PostgreSQL 9.5": { | ||
"description": "PostgreSQL (9.5.21), open-source relational DBMS.<p>Based on the official PostgreSQL docker image: <a href='https://hub.docker.com/_/postgres' target='_blank'>https://hub.docker.com/_/postgres</a>.</p><p><strong>Note: </strong>This rock-on requires Rockstor version 3.9.2-53 or later.</p>", | ||
"version":"1.2", | ||
"website":"https://www.postgresql.org", | ||
"more_info": "<h4>Important locations inside docker image:</h4><p>Config. file:<code>/var/lib/pgsql/data/pg_hba.conf</code></p> <p>Databases: <code>/var/lib/pgsql/data</code></p> <p>Logs: <code>/var/log/postgresql</code></p>", | ||
"volume_add_support":true, | ||
"containers": { | ||
"postgresql": { | ||
"image": "postgres", | ||
"launch_order":1, | ||
"tag": "9.5.21", | ||
"ports": { | ||
"5432": { | ||
"description":"PostgreSQL port. Suggested default: 5433 (Rockstor typically uses 5432 already)", | ||
"host_default":5433, | ||
"label":"PostgreSQL port", | ||
"protocol":"tcp" | ||
} | ||
}, | ||
"volumes": { | ||
"/var/lib/postgresql/data":{ | ||
"description":"Choose a share where the database should be stored. E.g.: create a share called postgresql95-data for this purpose alone.", | ||
"label":"Data Storage" | ||
} | ||
}, | ||
"environment": { | ||
"POSTGRES_USER": { | ||
"description": "Choose A Super User name for the PostgreSQL installation", | ||
"label": "SuperUser" | ||
}, | ||
"POSTGRES_PASSWORD": { | ||
"description": "set a password for the Super User.", | ||
"label": "SuperUser password" | ||
} | ||
} | ||
} | ||
} | ||
|
||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters