Skip to content

Commit 0fc120d

Browse files
committed
Merge branch 'hotfix-1.2.1' into stable
2 parents c9b4194 + 717d0d5 commit 0fc120d

File tree

4 files changed

+16
-11
lines changed

4 files changed

+16
-11
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
55
and this project follows [osixia/openldap](https://github.com/osixia/docker-openldap-backup) versioning.
66

7+
## [1.2.1] - 2018-05-14
8+
### Changed
9+
- Upgrade baseimage to openldap:1.2.1
10+
711
## [1.2.0] - 2018-03-05
812
### Changed
913
- Upgrade baseimage to openldap:1.2.0
@@ -87,6 +91,7 @@ and this project follows [osixia/openldap](https://github.com/osixia/docker-open
8791
## 0.1.0 - 2015-07-24
8892
Initial release
8993

94+
[1.2.1]: https://github.com/osixia/docker-openldap-backup/compare/v1.2.0...v1.2.1
9095
[1.2.0]: https://github.com/osixia/docker-openldap-backup/compare/v1.1.11...v1.2.0
9196
[1.1.11]: https://github.com/osixia/docker-openldap-backup/compare/v1.1.10...v1.1.11
9297
[1.1.10]: https://github.com/osixia/docker-openldap-backup/compare/v1.1.9...v1.1.10

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
NAME = osixia/openldap-backup
2-
VERSION = 1.2.0
2+
VERSION = 1.2.1
33

44
.PHONY: build build-nocache test tag-latest push push-latest release git-tag-version
55

README.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
[hub]: https://hub.docker.com/r/osixia/openldap-backup/
88

9-
Latest release: 1.2.0 - [Changelog](CHANGELOG.md) | [Docker Hub](https://hub.docker.com/r/osixia/openldap-backup/) 
9+
Latest release: 1.2.1 - [Changelog](CHANGELOG.md) | [Docker Hub](https://hub.docker.com/r/osixia/openldap-backup/) 
1010

1111
**A docker image to run OpenLDAP, and make periodic backups.**
1212

@@ -20,7 +20,7 @@ Latest release: 1.2.0 - [Changelog](CHANGELOG.md) | [Docker Hub](https://hub.do
2020
- [Link environment file](#link-environment-file)
2121
- [Make your own image or extend this image](#make-your-own image-or-extend-this-image)
2222
- [Advanced User Guide](#advanced-user-guide)
23-
- [Extend osixia/openldap-backup:1.2.0 image](#extend-osixiaopenldap-backup120-image)
23+
- [Extend osixia/openldap-backup:1.2.1 image](#extend-osixiaopenldap-backup121-image)
2424
- [Make your own phpLDAPadmin image](#make-your-own-phpldapadmin-image)
2525
- [Tests](#tests)
2626
- [Kubernetes](#kubernetes)
@@ -49,7 +49,7 @@ Backups are created in the directory `/data/backup` that should be mapped has vo
4949

5050
docker run --env LDAP_BACKUP_CONFIG_CRON_EXP="0 5 * * *" \
5151
--volume /data/openldap/backup:/data/backup \
52-
--detach osixia/openldap-backup:1.2.0
52+
--detach osixia/openldap-backup:1.2.1
5353

5454

5555
For more information about docker data volume, please refer to :
@@ -63,11 +63,11 @@ Available levels are: `none`, `error`, `warning`, `info`, `debug` and `trace`.
6363

6464
Example command to run the container in `debug` mode:
6565

66-
docker run --detach osixia/openldap-backup:1.2.0 --loglevel debug
66+
docker run --detach osixia/openldap-backup:1.2.1 --loglevel debug
6767

6868
See all command line options:
6969

70-
docker run osixia/openldap-backup:1.2.0 --help
70+
docker run osixia/openldap-backup:1.2.1 --help
7171

7272

7373
## Environment Variables
@@ -89,15 +89,15 @@ See how to [set your own environment variables](#set-your-own-environment-variab
8989
Environment variables can be set by adding the --env argument in the command line, for example:
9090

9191
docker run --env LDAP_BACKUP_CONFIG_CRON_EXP="0 5 * * *" \
92-
--detach osixia/openldap-backup:1.2.0
92+
--detach osixia/openldap-backup:1.2.1
9393

9494

9595
#### Link environment file
9696

9797
For example if your environment file is in : /data/ldap/environment/my-env.yaml
9898

9999
docker run --volume /data/ldap/environment/my-env.yaml:/container/environment/01-custom/env.yaml \
100-
--detach osixia/openldap-backup:1.2.0
100+
--detach osixia/openldap-backup:1.2.1
101101

102102
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).
103103

@@ -107,13 +107,13 @@ This is the best solution if you have a private registry. Please refer to the [A
107107

108108
## Advanced User Guide
109109

110-
### Extend osixia/openldap-backup:1.2.0 image
110+
### Extend osixia/openldap-backup:1.2.1 image
111111

112112
If you need to add your custom environment files you can extends this image.
113113

114114
Dockerfile example:
115115

116-
FROM osixia/openldap-backup:1.2.0
116+
FROM osixia/openldap-backup:1.2.1
117117
MAINTAINER Your Name <your@name.com>
118118

119119
ADD environment /container/environment/01-custom

image/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM osixia/openldap:1.2.0
1+
FROM osixia/openldap:1.2.1
22
MAINTAINER Bertrand Gouny <bertrand.gouny@osixia.net>
33

44
# Install cron from baseimage and remove .cfss and slapd services inherited from openldap image

0 commit comments

Comments
 (0)