Skip to content

Commit 117f570

Browse files
committed
feat: update baseimage to osixia/openldap:1.5.0
1 parent 151eb62 commit 117f570

4 files changed

Lines changed: 16 additions & 11 deletions

File tree

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.5.0] - 2021-02-19
8+
### Changed
9+
- Upgrade baseimage to openldap:1.5.0
10+
711
## [1.4.0] - 2020-06-15
812
### Changed
913
- Upgrade baseimage to openldap:1.4.0
@@ -122,6 +126,7 @@ and this project follows [osixia/openldap](https://github.com/osixia/docker-open
122126
## 0.1.0 - 2015-07-24
123127
Initial release
124128

129+
[1.5.0]: https://github.com/osixia/docker-openldap-backup/compare/v1.4.0...v1.5.0
125130
[1.4.0]: https://github.com/osixia/docker-openldap-backup/compare/v1.3.0...v1.4.0
126131
[1.3.0]: https://github.com/osixia/docker-openldap-backup/compare/v1.2.5...v1.3.0
127132
[1.2.5]: https://github.com/osixia/docker-openldap-backup/compare/v1.2.4...v1.2.5

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.4.0
2+
VERSION = 1.5.0
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.4.0 - [Changelog](CHANGELOG.md) | [Docker Hub](https://hub.docker.com/r/osixia/openldap-backup/) 
9+
Latest release: 1.5.0 - [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

@@ -21,7 +21,7 @@ Latest release: 1.4.0 - [Changelog](CHANGELOG.md) | [Docker Hub](https://hub.doc
2121
- [Link environment file](#link-environment-file)
2222
- [Make your own image or extend this image](#make-your-own-image-or-extend-this-image)
2323
- [Advanced User Guide](#advanced-user-guide)
24-
- [Extend osixia/openldap-backup:1.4.0 image](#extend-osixiaopenldap-backup140-image)
24+
- [Extend osixia/openldap-backup:1.5.0 image](#extend-osixiaopenldap-backup150-image)
2525
- [Make your own openldap-backup image](#make-your-own-openldap-backup-image)
2626
- [Tests](#tests)
2727
- [Kubernetes](#kubernetes)
@@ -50,7 +50,7 @@ Backups are created in the directory `/data/backup` that should be mapped has vo
5050

5151
docker run --env LDAP_BACKUP_CONFIG_CRON_EXP="0 5 * * *" \
5252
--volume /data/openldap/backup:/data/backup \
53-
--detach osixia/openldap-backup:1.4.0
53+
--detach osixia/openldap-backup:1.5.0
5454

5555

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

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

67-
docker run --detach osixia/openldap-backup:1.4.0 --loglevel debug
67+
docker run --detach osixia/openldap-backup:1.5.0 --loglevel debug
6868

6969
See all command line options:
7070

71-
docker run osixia/openldap-backup:1.4.0 --help
71+
docker run osixia/openldap-backup:1.5.0 --help
7272

7373

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

9292
docker run --env LDAP_BACKUP_CONFIG_CRON_EXP="0 5 * * *" \
93-
--detach osixia/openldap-backup:1.4.0
93+
--detach osixia/openldap-backup:1.5.0
9494

9595

9696
#### Link environment file
9797

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

100100
docker run --volume /data/ldap/environment/my-env.yaml:/container/environment/01-custom/env.yaml \
101-
--detach osixia/openldap-backup:1.4.0
101+
--detach osixia/openldap-backup:1.5.0
102102

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

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

109109
## Advanced User Guide
110110

111-
### Extend osixia/openldap-backup:1.4.0 image
111+
### Extend osixia/openldap-backup:1.5.0 image
112112

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

115115
Dockerfile example:
116116

117-
FROM osixia/openldap-backup:1.4.0
117+
FROM osixia/openldap-backup:1.5.0
118118
MAINTAINER Your Name <your@name.com>
119119

120120
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.4.0
1+
FROM osixia/openldap:1.5.0
22

33
# Install cron from baseimage and remove .cfss and slapd services inherited from openldap image
44
# remove also previous default environment files, they are not needed.

0 commit comments

Comments
 (0)