Sign inSign up

blacklabelops/postgres

By blacklabelops

•Updated over 9 years ago

Postgres Image for Atlassian Applications

Image
4

1M+

blacklabelops/postgres repository overview

⁠Dockerized PostgreSQL

Work in Progress

blacklabelops/postgres:latest

Basically Alpine PostgreSQL with official Postgres entrypoint.

Takes the same parameters as: Official Postgres⁠

Added the specification of database encoding and collate for Atlassian applications:

Example:

$ docker run --name postgres -d \
    -e 'POSTGRES_USER=jira' \
    -e 'POSTGRES_PASSWORD=jellyfish' \
    -e 'POSTGRES_DB=jiradb' \
    -e 'POSTGRES_ENCODING=UNICODE' \
    -e 'POSTGRES_COLLATE=C' \
    -e 'POSTGRES_COLLATE_TYPE=C' \
    blacklabelops/postgres

Starts a database for Atlassian Jira.

⁠Database Create Statement

You can specify an initial database create statement.

$ docker run --name postgres -d \
    -e 'POSTGRES_USER=jira' \
    -e 'POSTGRES_PASSWORD=jellyfish' \
    -e 'POSTGRES_DB=jiradb' \
    -e 'POSTGRES_DB_CREATE=CREATE DATABASE userdatabase ' \
    blacklabelops/postgres

Starts a database for Atlassian Jira.

⁠Support

Leave a message and ask questions on Hipchat: blacklabelops/hipchat⁠

Tag summary

Content type

Image

Digest

Size

12.7 MB

Last updated

over 9 years ago

docker pull blacklabelops/postgres