1.2.0-ol-7-r0 release

Maintenance release
This commit is contained in:
Bitnami Bot 2018-06-26 15:18:25 +00:00
parent 4dbeaa647e
commit ae18fd77d9
6 changed files with 80 additions and 3 deletions

View File

@ -0,0 +1,25 @@
FROM bitnami/oraclelinux-extras:7-r18
LABEL maintainer "Bitnami <containers@bitnami.com>"
# Install required system packages and dependencies
RUN install_packages bzip2-libs glibc keyutils-libs krb5-libs libcom_err libgcc libselinux libstdc++ ncurses-libs nss-softokn-freebl openssl-libs pcre readline sqlite zlib
RUN bitnami-pkg install node-8.11.3-0 --checksum 0f9b299a5add60d28a967ab89a269a7f313f500a26b43ca825c47d878dff137d
RUN bitnami-pkg unpack parse-dashboard-1.2.0-1 --checksum bbf1798b6177379ea631887dc9d12862c14fa675f43105b5b25ddc0cc266b3bc
COPY rootfs /
ENV BITNAMI_APP_NAME="parse-dashboard" \
BITNAMI_IMAGE_VERSION="1.2.0-ol-7-r0" \
PARSE_APP_ID="myappID" \
PARSE_DASHBOARD_APP_NAME="MyDashboard" \
PARSE_DASHBOARD_PASSWORD="bitnami" \
PARSE_DASHBOARD_USER="user" \
PARSE_HOST="parse" \
PARSE_MASTER_KEY="mymasterKey" \
PARSE_MOUNT_PATH="/parse" \
PARSE_PORT_NUMBER="1337" \
PATH="/opt/bitnami/node/bin:/opt/bitnami/parse-dashboard/bin:$PATH"
EXPOSE 4040
ENTRYPOINT ["/app-entrypoint.sh"]
CMD ["nami","start","--foreground","parse-dashboard"]

View File

@ -0,0 +1,29 @@
version: '2'
services:
mongodb:
image: 'bitnami/mongodb:3.6-ol-7'
volumes:
- 'mongodb_data:/bitnami'
parse:
image: 'bitnami/parse:2-ol-7'
ports:
- '1337:1337'
volumes:
- 'parse_data:/bitnami'
depends_on:
- mongodb
parse-dashboard:
image: 'bitnami/parse-dashboard:1-ol-7'
ports:
- '80:4040'
volumes:
- 'parse_dashboard_data:/bitnami'
depends_on:
- parse
volumes:
mongodb_data:
driver: local
parse_data:
driver: local
parse_dashboard_data:
driver: local

View File

@ -0,0 +1,13 @@
#!/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 parse-dashboard
info "Starting parse-dashboard... "
fi
exec tini -- "$@"

View File

@ -0,0 +1,10 @@
{
"dashboardName": "{{$global.env.PARSE_DASHBOARD_APP_NAME}}",
"parseAppId": "{{$global.env.PARSE_APP_ID}}",
"parseHost": "{{$global.env.PARSE_HOST}}",
"parseMasterKey": "{{$global.env.PARSE_MASTER_KEY}}",
"parseMountPath": "{{$global.env.PARSE_MOUNT_PATH}}",
"parsePort": "{{$global.env.PARSE_PORT_NUMBER}}",
"password": "{{$global.env.PARSE_DASHBOARD_PASSWORD}}",
"username": "{{$global.env.PARSE_DASHBOARD_USER}}"
}

View File

@ -213,7 +213,7 @@ You can use these snapshots to restore the application state should the upgrade
5. Run the new image
* For docker-compose: `$ docker-compose start parse-dashboard`
* For docker-compose: `$ docker-compose up parse-dashboard`
* For manual execution ([mount](#mount-persistent-folders-manually) the directories if needed): `docker run --name parse-dashboard bitnami/parse-dashboard:latest`
# Configuration

View File

@ -9,8 +9,8 @@ jobs:
LATEST_STABLE: "1"
DISTRIBUTIONS_LIST: "debian-8"
IMAGE_NAME: parse-dashboard
CHART_NAME: parse
CHART_REPO: https://github.com/kubernetes/charts
CHART_NAME:
CHART_REPO:
SKIP_CHART_APP_VERSION_UPDATE: "1"
DOCKER_PROJECT: bitnami
QUAY_PROJECT: bitnami