0.20180422.201805030840-ol-7-r0 release

Added new directory to dataToPersist
This commit is contained in:
Bitnami Bot
2018-05-30 15:44:41 +00:00
parent 679b0decb0
commit 029005d3a0
7 changed files with 74 additions and 1 deletions

View File

@@ -0,0 +1,26 @@
FROM bitnami/oraclelinux-extras:7-r3
LABEL maintainer "Bitnami <containers@bitnami.com>"
# Install required system packages and dependencies
RUN install_packages bzip2-libs cyrus-sasl-lib expat freetype glibc gmp keyutils-libs krb5-libs libcom_err libcurl libgcc libgcrypt libgpg-error libicu libidn libjpeg-turbo libpng libselinux libssh2 libstdc++ libxml2 libxslt ncurses-libs nspr nss nss-softokn-freebl nss-util openldap openssl-libs pcre postgresql-libs readline sqlite xz-libs zlib
RUN bitnami-pkg unpack apache-2.4.33-3 --checksum 0611709446389dbf1b9a08ee4b8b447443e356e286a9c6dee312d55f72e465d6
RUN bitnami-pkg unpack php-7.0.30-3 --checksum 1de72790ae78f941b400212bba9f04201373b7573e679818a7f06edbb65cf473
RUN bitnami-pkg install libphp-7.0.30-6 --checksum 31cf8fe7e06aee8a9954e5205b9d49e7ec8c8eef4d260a9ed21e1955ec10a9f9
RUN bitnami-pkg unpack dokuwiki-0.20180422.201805030840-1 --checksum d6e6d2da49ee8f92eac0caa891e43da9a5f42f9b19e4dc6cd4f3aae8032fbc6f
COPY rootfs /
ENV APACHE_HTTPS_PORT_NUMBER="443" \
APACHE_HTTP_PORT_NUMBER="80" \
BITNAMI_APP_NAME="dokuwiki" \
BITNAMI_IMAGE_VERSION="0.20180422.201805030840-ol-7-r0" \
DOKUWIKI_EMAIL="user@example.com" \
DOKUWIKI_FULL_NAME="Full Name" \
DOKUWIKI_PASSWORD="bitnami1" \
DOKUWIKI_USERNAME="superuser" \
DOKUWIKI_WIKI_NAME="Bitnami DokuWiki" \
PATH="/opt/bitnami/apache/bin:/opt/bitnami/php/bin:$PATH"
EXPOSE 80 443
ENTRYPOINT ["/app-entrypoint.sh"]
CMD ["nami","start","--foreground","apache"]

View File

@@ -0,0 +1,14 @@
version: '2'
services:
dokuwiki:
image: 'bitnami/dokuwiki:0-ol-7'
labels:
kompose.service.type: nodeport
ports:
- '80:80'
- '443:443'
volumes:
- 'dokuwiki_data:/bitnami'
volumes:
dokuwiki_data:
driver: local

View File

@@ -0,0 +1,4 @@
{
"httpPort": "{{$global.env.APACHE_HTTP_PORT_NUMBER}}",
"httpsPort": "{{$global.env.APACHE_HTTPS_PORT_NUMBER}}"
}

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 apache php dokuwiki
info "Starting dokuwiki... "
fi
exec tini -- "$@"

View File

@@ -0,0 +1,7 @@
{
"email": "{{$global.env.DOKUWIKI_EMAIL}}",
"fullName": "{{$global.env.DOKUWIKI_FULL_NAME}}",
"password": "{{$global.env.DOKUWIKI_PASSWORD}}",
"username": "{{$global.env.DOKUWIKI_USERNAME}}",
"wikiName": "{{$global.env.DOKUWIKI_WIKI_NAME}}"
}

View File

@@ -23,6 +23,14 @@ $ docker-compose up -d
* Bitnami images are built on CircleCI and automatically pushed to the Docker Hub.
* All our images are based on [minideb](https://github.com/bitnami/minideb) a minimalist Debian based container image which gives you a small base container image and the familiarity of a leading linux distribution.
# Supported tags and respective `Dockerfile` links
* [`0-ol-7`, `0.20180422.201805030840-ol-7-r0` (0/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-dokuwiki/blob/0.20180422.201805030840-ol-7-r0/0/ol-7/Dockerfile)
* [`0`, `0.20180422.201805030840-r20`, `latest` (0/Dockerfile)](https://github.com/bitnami/bitnami-docker-dokuwiki/blob/0.20180422.201805030840-r20/0/Dockerfile)
Subscribe to project updates by watching the [bitnami/dokuwiki GitHub repo](https://github.com/bitnami/bitnami-docker-dokuwiki).
# Prerequisites
To run this application you need Docker Engine 1.10.0. Docker Compose is recomended with a version 1.6.0 or later.

View File

@@ -7,6 +7,7 @@ jobs:
environment:
RELEASE_SERIES_LIST: "0"
LATEST_STABLE: "0"
DISTRIBUTIONS_LIST: "debian-8,ol-7"
IMAGE_NAME: dokuwiki
CHART_NAME: dokuwiki
CHART_REPO: https://github.com/kubernetes/charts
@@ -63,4 +64,4 @@ workflows:
branches:
only: /.*/
tags:
only: /^[0-9].*-r[0-9]+$/
only: /^.*(?<!-rhel-7)-r[0-9]+$/