rkerberos 0.2.0 → 0.2.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
data/docker-compose.yml DELETED
@@ -1,44 +0,0 @@
1
- version: '3.8'
2
- services:
3
- kerberos-kdc:
4
- build:
5
- context: ./docker
6
- dockerfile: Dockerfile.kdc
7
- container_name: kerberos-kdc
8
- ports:
9
- - "1088:88"
10
- - "1749:749"
11
- volumes:
12
- - krb5-keytab:/etc/krb5.keytab
13
- depends_on:
14
- - ldap
15
-
16
- rkerberos-test:
17
- build: .
18
- container_name: rkerberos-test
19
- environment:
20
- - LANG=C.UTF-8
21
- - KRB5_CONFIG=/etc/krb5.conf
22
- - KRB5_ADMIN_PRINCIPAL=admin/admin@EXAMPLE.COM
23
- - KRB5_ADMIN_PASSWORD=adminpassword
24
- # LDAP test variables for integration tests
25
- - KRB5_LDAP_PRINCIPAL=admin@ldap
26
- - KRB5_LDAP_PASSWORD=admin
27
- - KRB5_LDAP_DRIVER=ou=People,dc=example,dc=com:foobar:uid
28
- working_dir: /app
29
- depends_on:
30
- - kerberos-kdc
31
-
32
- ldap:
33
- image: osixia/openldap:latest
34
- container_name: ldap
35
- environment:
36
- LDAP_ORGANISATION: "Example Org"
37
- LDAP_DOMAIN: "example.com"
38
- LDAP_BASE_DN: "dc=example,dc=com"
39
- LDAP_ADMIN_PASSWORD: "admin"
40
- ports:
41
- - "1389:389"
42
-
43
- volumes:
44
- krb5-keytab: