You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -66,7 +66,7 @@ Add -e PHPLDAPADMIN_HTTPS=false to the run command :
66
66
67
67
## Environment Variables
68
68
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.
70
70
71
71
-**PHPLDAPADMIN_LDAP_HOSTS**: Set phpLDAPadmin server config. Defaults to :
72
72
@@ -125,9 +125,9 @@ Environment variable can be set directly by adding the -e argument in the comman
125
125
docker run -h phpldapadmin.example.org -e PHPLDAPADMIN_LDAP_HOSTS="ldap.example.org" \
126
126
-d osixia/phpldapadmin
127
127
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`
129
129
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 \
0 commit comments