Skip to content

Commit eaf1326

Browse files
committed
Merge branch 'hotfix-0.6.3' into stable
2 parents 6e05f51 + 4b98b22 commit eaf1326

File tree

4 files changed

+9
-6
lines changed

4 files changed

+9
-6
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# Changelog
22

3+
## 0.6.3
4+
- Upgrade baseimage: osixia/web-baseimage:0.1.3
5+
36
## 0.6.2
47
- Better way to add custom config
58

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
NAME = osixia/phpldapadmin
2-
VERSION = 0.6.2
2+
VERSION = 0.6.3
33

44
.PHONY: all build test tag_latest release
55

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ Add -e PHPLDAPADMIN_HTTPS=false to the run command :
6666

6767
## Environment Variables
6868

69-
Environement variables defaults are set in **image/env.yaml**. You can modify environment variable values directly in this file and rebuild the image ([see manual build](#manual-build)). You can also override those values at run time with -e argument or by setting your own env.yaml file as a docker volume to `/etc/env.yaml`. See examples below.
69+
Environement variables defaults are set in **image/env.yaml**. You can modify environment variable values directly in this file and rebuild the image ([see manual build](#manual-build)). You can also override those values at run time with -e argument or by setting your own env.yaml file as a docker volume to `/container/environment/env.yaml`. See examples below.
7070

7171
- **PHPLDAPADMIN_LDAP_HOSTS**: Set phpLDAPadmin server config. Defaults to :
7272

@@ -125,9 +125,9 @@ Environment variable can be set directly by adding the -e argument in the comman
125125
docker run -h phpldapadmin.example.org -e PHPLDAPADMIN_LDAP_HOSTS="ldap.example.org" \
126126
-d osixia/phpldapadmin
127127

128-
Or by setting your own `env.yaml` file as a docker volume to `/etc/env.yaml`
128+
Or by setting your own `env.yaml` file as a docker volume to `/container/environment/env.yaml`
129129

130-
docker run -h ldap.example.org -v /data/my-env.yaml:/etc/env.yaml \
130+
docker run -h ldap.example.org -v /data/my-env.yaml:/container/environment/env.yaml \
131131
-d osixia/openldap
132132

133133
## Manual build

image/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM osixia/web-baseimage:0.1.2
1+
FROM osixia/web-baseimage:0.1.3
22
MAINTAINER Bertrand Gouny <bertrand.gouny@osixia.net>
33

44
# phpLDAPadmin version
@@ -39,7 +39,7 @@ RUN /container/tool/install-service \
3939
&& rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
4040

4141
# Add default env variables
42-
ADD env.yaml /etc/env.yaml
42+
ADD env.yaml /container/environment/env.yaml
4343

4444
# Set phpLDAPadmin data directory in a data volume
4545
VOLUME ["/var/www/phpldapadmin"]

0 commit comments

Comments
 (0)