This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | version: '3.7' | |
| services: | |
| openldap: | |
| image: osixia/openldap:latest | |
| container_name: openldap | |
| domainname: "example.org" | |
| hostname: "openldap" | |
| environment: | |
| LDAP_ORGANISATION: "Example Inc." | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | Vagrant.configure(2) do |config| | |
| config.vm.box = "phusion/ubuntu-14.04-amd64" | |
| config.vm.network "forwarded_port", guest: 3306, host: 3306 | |
| # If errors occur, try running "vagrant provision" manually | |
| # after "vagrant up" | |
| config.vm.provision :docker | |
| # To use docker_compose as a provisioning tool, install | |
| # vagrant-docker-compose plugin first. It should also solve the |