diff --git a/CHANGELOG.md b/CHANGELOG.md index 8f44220..668029a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # Changelog +## 1.1.10 + - Upgrade baseimage: openldap:1.1.10 + ## 1.1.9 - Upgrade baseimage: openldap:1.1.9 diff --git a/Makefile b/Makefile index 3020967..6e1f2e3 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,5 @@ NAME = osixia/openldap-backup -VERSION = 1.1.9 +VERSION = 1.1.10 .PHONY: build build-nocache test tag-latest push push-latest release git-tag-version diff --git a/README.md b/README.md index 3ba67a5..00b9172 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,7 @@ [hub]: https://hub.docker.com/r/osixia/openldap-backup/ -Latest release: 1.1.9 - [Changelog](CHANGELOG.md) | [Docker Hub](https://hub.docker.com/r/osixia/openldap-backup/)  +Latest release: 1.1.10 - [Changelog](CHANGELOG.md) | [Docker Hub](https://hub.docker.com/r/osixia/openldap-backup/)  **A docker image to run OpenLDAP, and make periodic backups.** @@ -19,7 +19,7 @@ Latest release: 1.1.9 - [Changelog](CHANGELOG.md) | [Docker Hub](https://hub.do - [Link environment file](#link-environment-file) - [Make your own image or extend this image](#make-your-own image-or-extend-this-image) - [Advanced User Guide](#advanced-user-guide) - - [Extend osixia/openldap-backup:1.1.9 image](#extend-osixiaopenldap-backup119-image) + - [Extend osixia/openldap-backup:1.1.10 image](#extend-osixiaopenldap-backup1110-image) - [Make your own phpLDAPadmin image](#make-your-own-phpldapadmin-image) - [Tests](#tests) - [Kubernetes](#kubernetes) @@ -39,7 +39,7 @@ Backups are created in the directory `/data/backup` that should be mapped has vo docker run --env LDAP_BACKUP_CONFIG_CRON_EXP="0 5 * * *" \ --volume /data/openldap/backup:/data/backup \ - --detach osixia/openldap-backup:1.1.9 + --detach osixia/openldap-backup:1.1.10 For more information about docker data volume, please refer to : @@ -53,11 +53,11 @@ Available levels are: `none`, `error`, `warning`, `info`, `debug` and `trace`. Example command to run the container in `debug` mode: - docker run --detach osixia/openldap-backup:1.1.9 --loglevel debug + docker run --detach osixia/openldap-backup:1.1.10 --loglevel debug See all command line options: - docker run osixia/openldap-backup:1.1.9 --help + docker run osixia/openldap-backup:1.1.10 --help ## Environment Variables @@ -79,7 +79,7 @@ See how to [set your own environment variables](#set-your-own-environment-variab Environment variables can be set by adding the --env argument in the command line, for example: docker run --env LDAP_BACKUP_CONFIG_CRON_EXP="0 5 * * *" \ - --detach osixia/openldap-backup:1.1.9 + --detach osixia/openldap-backup:1.1.10 #### Link environment file @@ -87,7 +87,7 @@ Environment variables can be set by adding the --env argument in the command lin For example if your environment file is in : /data/ldap/environment/my-env.yaml docker run --volume /data/ldap/environment/my-env.yaml:/container/environment/01-custom/env.yaml \ - --detach osixia/openldap-backup:1.1.9 + --detach osixia/openldap-backup:1.1.10 Take care to link your environment file to `/container/environment/XX-somedir` (with XX < 99 so they will be processed before default environment files) and not directly to `/container/environment` because this directory contains predefined baseimage environment files to fix container environment (INITRD, LANG, LANGUAGE and LC_CTYPE). @@ -97,13 +97,13 @@ This is the best solution if you have a private registry. Please refer to the [A ## Advanced User Guide -### Extend osixia/openldap-backup:1.1.9 image +### Extend osixia/openldap-backup:1.1.10 image If you need to add your custom environment files you can extends this image. Dockerfile example: - FROM osixia/openldap-backup:1.1.9 + FROM osixia/openldap-backup:1.1.10 MAINTAINER Your Name ADD environment /container/environment/01-custom diff --git a/image/Dockerfile b/image/Dockerfile index b250f71..71b3e49 100644 --- a/image/Dockerfile +++ b/image/Dockerfile @@ -1,4 +1,4 @@ -FROM osixia/openldap:1.1.9 +FROM osixia/openldap:1.1.10 MAINTAINER Bertrand Gouny # Install cron from baseimage and remove .cfss and slapd services inherited from openldap image