Removed Debian 8 from root version folders

This commit is contained in:
Vikram Vaswani 2018-09-20 19:50:48 +05:30
parent 3e48e174ed
commit 8383e3c44b
8 changed files with 0 additions and 124 deletions

View File

@ -1,25 +0,0 @@
FROM bitnami/minideb-extras:jessie-r107
LABEL maintainer "Bitnami <containers@bitnami.com>"
# Install required system packages and dependencies
RUN install_packages libbsd0 libc6 libedit2 liblzma5 libssl1.0.0 libtinfo5 libxml2 libxslt1.1 zlib1g
RUN bitnami-pkg unpack postgresql-10.4.0-2 --checksum fc09c88d5f1f8d9b280b45654bc3ea942b92a9d5009b199f402641ae7ba3ae10
COPY rootfs /
ENV BITNAMI_APP_NAME="postgresql" \
BITNAMI_IMAGE_VERSION="10.4.0-debian-8-r41" \
PATH="/opt/bitnami/postgresql/bin:$PATH" \
POSTGRESQL_DATABASE="" \
POSTGRESQL_MASTER_HOST="" \
POSTGRESQL_MASTER_PORT_NUMBER="5432" \
POSTGRESQL_PASSWORD="" \
POSTGRESQL_PORT_NUMBER="5432" \
POSTGRESQL_REPLICATION_MODE="master" \
POSTGRESQL_REPLICATION_PASSWORD="" \
POSTGRESQL_REPLICATION_USER="" \
POSTGRESQL_USERNAME="postgres"
EXPOSE 5432
ENTRYPOINT ["/app-entrypoint.sh"]
CMD ["nami","start","--foreground","postgresql"]

View File

@ -1,13 +0,0 @@
version: '2'
services:
postgresql:
image: 'bitnami/postgresql:10'
ports:
- '5432:5432'
volumes:
- 'postgresql_data:/bitnami'
volumes:
postgresql_data:
driver: local

View File

@ -1,13 +0,0 @@
#!/bin/bash -e
. /opt/bitnami/base/functions
. /opt/bitnami/base/helpers
print_welcome_page
if [[ "$1" == "nami" && "$2" == "start" ]] || [[ "$1" == "/init.sh" ]]; then
nami_initialize postgresql
info "Starting postgresql... "
fi
exec tini -- "$@"

View File

@ -1,11 +0,0 @@
{
"database": "{{$global.env.POSTGRESQL_DATABASE}}",
"masterHost": "{{$global.env.POSTGRESQL_MASTER_HOST}}",
"masterPort": "{{$global.env.POSTGRESQL_MASTER_PORT_NUMBER}}",
"password": "{{$global.env.POSTGRESQL_PASSWORD}}",
"postgresqlPort": "{{$global.env.POSTGRESQL_PORT_NUMBER}}",
"replicationMode": "{{$global.env.POSTGRESQL_REPLICATION_MODE}}",
"replicationPassword": "{{$global.env.POSTGRESQL_REPLICATION_PASSWORD}}",
"replicationUser": "{{$global.env.POSTGRESQL_REPLICATION_USER}}",
"username": "{{$global.env.POSTGRESQL_USERNAME}}"
}

View File

@ -1,25 +0,0 @@
FROM bitnami/minideb-extras:jessie-r107
LABEL maintainer "Bitnami <containers@bitnami.com>"
# Install required system packages and dependencies
RUN install_packages libbsd0 libc6 libedit2 liblzma5 libssl1.0.0 libtinfo5 libxml2 libxslt1.1 zlib1g
RUN bitnami-pkg unpack postgresql-9.6.9-1 --checksum 579c908f9a4442a31cd0e4a3f6761dce933062f02040dac3350efc1dfc1419b3
COPY rootfs /
ENV BITNAMI_APP_NAME="postgresql" \
BITNAMI_IMAGE_VERSION="9.6.9-debian-8-r41" \
PATH="/opt/bitnami/postgresql/bin:$PATH" \
POSTGRESQL_DATABASE="" \
POSTGRESQL_MASTER_HOST="" \
POSTGRESQL_MASTER_PORT_NUMBER="5432" \
POSTGRESQL_PASSWORD="" \
POSTGRESQL_PORT_NUMBER="5432" \
POSTGRESQL_REPLICATION_MODE="master" \
POSTGRESQL_REPLICATION_PASSWORD="" \
POSTGRESQL_REPLICATION_USER="" \
POSTGRESQL_USERNAME="postgres"
EXPOSE 5432
ENTRYPOINT ["/app-entrypoint.sh"]
CMD ["nami","start","--foreground","postgresql"]

View File

@ -1,13 +0,0 @@
version: '2'
services:
postgresql:
image: 'bitnami/postgresql:9.6'
ports:
- '5432:5432'
volumes:
- 'postgresql_data:/bitnami'
volumes:
postgresql_data:
driver: local

View File

@ -1,13 +0,0 @@
#!/bin/bash -e
. /opt/bitnami/base/functions
. /opt/bitnami/base/helpers
print_welcome_page
if [[ "$1" == "nami" && "$2" == "start" ]] || [[ "$1" == "/init.sh" ]]; then
nami_initialize postgresql
info "Starting postgresql... "
fi
exec tini -- "$@"

View File

@ -1,11 +0,0 @@
{
"database": "{{$global.env.POSTGRESQL_DATABASE}}",
"masterHost": "{{$global.env.POSTGRESQL_MASTER_HOST}}",
"masterPort": "{{$global.env.POSTGRESQL_MASTER_PORT_NUMBER}}",
"password": "{{$global.env.POSTGRESQL_PASSWORD}}",
"postgresqlPort": "{{$global.env.POSTGRESQL_PORT_NUMBER}}",
"replicationMode": "{{$global.env.POSTGRESQL_REPLICATION_MODE}}",
"replicationPassword": "{{$global.env.POSTGRESQL_REPLICATION_PASSWORD}}",
"replicationUser": "{{$global.env.POSTGRESQL_REPLICATION_USER}}",
"username": "{{$global.env.POSTGRESQL_USERNAME}}"
}