10.0.7-r5 release

Update image to version 10.0.7-r5
This commit is contained in:
Bitnami Bot
2018-04-03 11:52:32 +00:00
parent 507e083b69
commit 16a9d3bc7d
3 changed files with 46 additions and 21 deletions

View File

@@ -3,10 +3,10 @@ LABEL maintainer "Bitnami <containers@bitnami.com>"
# Install required system packages and dependencies
RUN install_packages libapr1 libaprutil1 libbz2-1.0 libc6 libcomerr2 libcurl3 libexpat1 libffi6 libfreetype6 libgcc1 libgcrypt20 libgmp10 libgnutls-deb0-28 libgpg-error0 libgssapi-krb5-2 libhogweed2 libicu52 libidn11 libjpeg62-turbo libk5crypto3 libkeyutils1 libkrb5-3 libkrb5support0 libldap-2.4-2 liblzma5 libmcrypt4 libncurses5 libnettle4 libp11-kit0 libpcre3 libpng12-0 libpq5 libreadline6 librtmp1 libsasl2-2 libssh2-1 libssl1.0.0 libstdc++6 libsybdb5 libtasn1-6 libtidy-0.99-0 libtinfo5 libuuid1 libxml2 libxslt1.1 zlib1g
RUN bitnami-pkg unpack apache-2.4.29-1 --checksum 42114e87aafb1d519ab33451b6836873bca125d78ce7423c5f7f1de4a7198596
RUN bitnami-pkg unpack php-7.0.28-1 --checksum 211499a3c674c8cf5d338764b2ea4ac312a5edbd49df928448927cacb9632634
RUN bitnami-pkg unpack mysql-client-10.1.31-0 --checksum c5140f9fd386782201b78559972045018928a405df324564deb392c6c61073c1
RUN bitnami-pkg install libphp-7.0.28-0 --checksum a9d64e3bf9dd634710c8a9020735efa8f1bff6a6ffbb6b1f048d5d6cc9dccfc6
RUN bitnami-pkg unpack apache-2.4.33-0 --checksum 8b7e149b571298efb73d476ba0a87df0d0f8aa17fa3adf0590ffc0d37bf5d6cf
RUN bitnami-pkg unpack php-7.0.29-0 --checksum 978aae6e1eb9130edbfd2d340c0fccd8a294011b7582c1fa290cd6c12a8f8732
RUN bitnami-pkg unpack mysql-client-10.1.32-0 --checksum e65dc7fa2dd7fa6cac74d62a2cff2e3d40f650e721ac955381dc7b6f83d4a141
RUN bitnami-pkg install libphp-7.0.29-0 --checksum 4b37430c93913ba40be454a5837993ca60c3e6f15018d83df5619f16ff20af1c
RUN bitnami-pkg unpack owncloud-10.0.7-2 --checksum 6420d54298e60c95b79de239e5bd7597301f89c6f4e24febcd3d2b8649f3071e
COPY rootfs /
@@ -15,7 +15,7 @@ ENV ALLOW_EMPTY_PASSWORD="no" \
APACHE_HTTPS_PORT_NUMBER="443" \
APACHE_HTTP_PORT_NUMBER="80" \
BITNAMI_APP_NAME="owncloud" \
BITNAMI_IMAGE_VERSION="10.0.7-r4" \
BITNAMI_IMAGE_VERSION="10.0.7-r5" \
MARIADB_HOST="mariadb" \
MARIADB_PORT_NUMBER="3306" \
MARIADB_ROOT_PASSWORD="" \

View File

@@ -1,5 +1,4 @@
[![CircleCI](https://circleci.com/gh/bitnami/bitnami-docker-owncloud/tree/master.svg?style=shield)](https://circleci.com/gh/bitnami/bitnami-docker-owncloud/tree/master)
[![Slack](https://img.shields.io/badge/slack-join%20chat%20%E2%86%92-e01563.svg)](http://slack.oss.bitnami.com)
# What is ownCloud?
@@ -43,10 +42,18 @@ services:
image: 'bitnami/mariadb:latest'
environment:
- ALLOW_EMPTY_PASSWORD=yes
- MARIADB_USER=bn_owncloud
- MARIADB_DATABASE=bitnami_owncloud
volumes:
- 'mariadb_data:/bitnami'
owncloud:
image: 'bitnami/owncloud:latest'
environment:
- MARIADB_HOST=mariadb
- MARIADB_PORT_NUMBER=3306
- OWNCLOUD_DATABASE_USER=bn_owncloud
- OWNCLOUD_DATABASE_NAME=bitnami_owncloud
- ALLOW_EMPTY_PASSWORD=yes
ports:
- '80:80'
- '443:443'
@@ -71,18 +78,32 @@ If you want to run the application manually instead of using docker-compose, the
$ docker network create owncloud-tier
```
2. Start a MariaDB database in the network generated:
2. Create a volume for MariaDB persistence and create a MariaDB container
```bash
$ docker run -d --name mariadb -e ALLOW_EMPTY_PASSWORD=yes --net=owncloud-tier bitnami/mariadb
$ docker volume create --name mariadb_data
$ docker run -d --name mariadb \
-e ALLOW_EMPTY_PASSWORD=yes \
-e MARIADB_USER=bn_owncloud \
-e MARIADB_DATABASE=bitnami_owncloud \
--net owncloud-tier \
--volume mariadb_data:/bitnami \
bitnami/mariadb:latest
```
*Note:* You need to give the container a name in order to OwnCloud to resolve the host
3. Run the OwnCloud container:
3. Create volumes for Owncloud persistence and launch the container
```bash
$ docker run -d -p 80:80 --name owncloud --net=owncloud-tier bitnami/owncloud
$ docker volume create --name owncloud_data
$ docker run -d --name owncloud -p 80:80 -p 443:443 \
-e ALLOW_EMPTY_PASSWORD=yes \
-e OWNCLOUD_DATABASE_USER=bn_owncloud \
-e OWNCLOUD_DATABASE_NAME=bitnami_owncloud \
--net owncloud-tier \
--volume owncloud_data:/bitnami \
bitnami/owncloud:latest
```
Then you can access your application at http://your-ip/
@@ -117,10 +138,16 @@ services:
image: 'bitnami/mariadb:latest'
environment:
- ALLOW_EMPTY_PASSWORD=yes
- MARIADB_USER=bn_owncloud
- MARIADB_DATABASE=bitnami_owncloud
volumes:
- '/path/to/mariadb-persistence:/bitnami'
owncloud:
image: 'bitnami/owncloud:latest'
environment:
- OWNCLOUD_DATABASE_USER=bn_owncloud
- OWNCLOUD_DATABASE_NAME=bitnami_owncloud
- ALLOW_EMPTY_PASSWORD=yes
depends_on:
- mariadb
ports:
@@ -143,7 +170,10 @@ In this case you need to specify the directories to mount on the run command. Th
2. Create a MariaDB container with host volume:
```bash
$ docker run -d --name mariadb -e ALLOW_EMPTY_PASSWORD=yes \
$ docker run -d --name mariadb \
-e ALLOW_EMPTY_PASSWORD=yes \
-e MARIADB_USER=bn_owncloud \
-e MARIADB_DATABASE=bitnami_owncloud \
--net owncloud-tier \
--volume /path/to/mariadb-persistence:/bitnami \
bitnami/mariadb:latest
@@ -155,6 +185,9 @@ In this case you need to specify the directories to mount on the run command. Th
```bash
$ docker run -d --name owncloud -p 80:80 -p 443:443 \
-e ALLOW_EMPTY_PASSWORD=yes \
-e OWNCLOUD_DATABASE_USER=bn_owncloud \
-e OWNCLOUD_DATABASE_NAME=bitnami_owncloud \
--net owncloud-tier \
--volume /path/to/owncloud-persistence:/bitnami \
bitnami/owncloud:latest
@@ -199,7 +232,7 @@ You can use these snapshots to restore the application state should the upgrade
## Environment variables
When you start the owncloud image, you can adjust the configuration of the instance by passing one or more environment variables either on the docker-compose file or on the docker run command line.
When you start the owncloud image, you can adjust the configuration of the instance by passing one or more environment variables either on the docker-compose file or on the docker run command line.
##### User and Site configuration
@@ -263,20 +296,12 @@ We'd love for you to contribute to this container. You can request new features
# Issues
If you encountered a problem running this container, you can file an [issue](https://github.com/bitnami/bitnami-docker-owncloud/issues). For us to provide better support, be sure to include the following information in your issue:
- Host OS and version
- Docker version (`docker version`)
- Output of `docker info`
- Version of this container (`echo $BITNAMI_IMAGE_VERSION` inside the container)
- The command you used to run the container, and any relevant output you saw (masking any sensitive information)
# Community
Most real time communication happens in the `#containers` channel at [bitnami-oss.slack.com](http://bitnami-oss.slack.com); you can sign up at [slack.oss.bitnami.com](http://slack.oss.bitnami.com).
Discussions are archived at [bitnami-oss.slackarchive.io](https://bitnami-oss.slackarchive.io).
# License
Copyright 2016-2018 Bitnami

View File

@@ -8,7 +8,7 @@ jobs:
RELEASE_SERIES_LIST: "10"
LATEST_STABLE: "10"
IMAGE_NAME: owncloud
EXTRA_CHART_REPOS_LIST: "https://github.com/kubernetes/charts"
CHART_REPO: https://github.com/kubernetes/charts
DOCKER_PROJECT: bitnami
QUAY_PROJECT: bitnami
GCLOUD_PROJECT: bitnami-containers