diff --git a/readme.md b/readme.md new file mode 100644 index 0000000..d54f33c --- /dev/null +++ b/readme.md @@ -0,0 +1,16 @@ +### Example docker-compose file + +```yml +version: '3' +services: + ssh: + build: + context: . + ports: + - '222:22' + restart: always + environment: + LDAP_URI: 'ldap://ldap.example.com' + LDAP_DEFAULT_BIND_DN: 'ccn=foo_app,ou=applications,dc=companyname,dc=de' + LDAP_DEAULT_AUTHTOK: 'foobarbaz' +```