Skip to content

Dockerfile to build a FusionDirectory container image

License

Notifications You must be signed in to change notification settings

Fekide/docker-fusiondirectory

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

35 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

docker-fusiondirectory

Dockerfile to build a FusionDirectory container image.

Travis Build Status

Quick Start

The easiest way to launch the container is using docker-compose:

wget https://raw.githubusercontent.com/fekide/docker-fusiondirectory/master/example/docker-compose.yml
docker-compose up

Otherwise, you can manually launch the container using the docker command:

docker run -p 80:80 \
  -e LDAP_DOMAIN="example.org" \
  -e LDAP_HOST="ldap.example.org" \
  -e LDAP_ADMIN_PASSWORD="password" \
  -d fekide/fusiondirectory:latest

Alternatively, you can link this container with a previously launched LDAP container image as follows:

docker run --name ldap -p 389:389 \
  -e LDAP_ORGANISATION="Example Organization" \
  -e LDAP_DOMAIN="example.org" \
  -e LDAP_ADMIN_PASSWORD="password" \
  -e FD_ADMIN_PASSWORD="fdadminpassword" \
  -d fekide/fusiondirectory-openldap:latest

docker run --name fusiondirectory -p 80:80 --link ldap:ldap \
  -e LDAP_DOMAIN="example.org" \
  -e LDAP_HOST="ldap" \
  -e LDAP_ADMIN_PASSWORD="password" \
  -d fekide/fusiondirectory:latest

Access http://localhost:80 with your browser and login using the administrator account:

  • username: fd-admin
  • password: (the value you specified in FD_ADMIN_PASSWORD)

About

Dockerfile to build a FusionDirectory container image

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Shell 55.2%
  • Dockerfile 41.5%
  • Makefile 3.3%