forked from polybot-nexus/LBL-MF-Scicat-backend
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose-local-instance.yaml
More file actions
51 lines (51 loc) · 1.36 KB
/
docker-compose-local-instance.yaml
File metadata and controls
51 lines (51 loc) · 1.36 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
version: "3"
services:
mongodb:
image: "bitnami/mongodb:latest"
ports:
- "127.0.0.1:27017:27017"
volumes:
- "mongodb_data:/bitnami"
openldap:
image: osixia/openldap
container_name: openldap
hostname: openldap
environment:
LDAP_ORGANISATION: "LDAP SciCat Backend Auth"
LDAP_SSL_HELPER_PREFIX: "ldap"
LDAP_TLS_VERIFY_CLIENT: "never"
LDAP_LOG_LEVEL: 256
LDAP_ADMIN_PASSWORD: "admin"
ports:
- "389:389"
openldap-seed:
image: osixia/openldap
volumes:
- ./CI/ESS/ldif_files:/ldif_files
links:
- openldap
entrypoint: sh -c '/ldif_files/addAll.sh'
# openldap-admin:
# image: osixia/phpldapadmin
# container_name: openldap-admin
# hostname: openldap-admin
# environment:
# PHPLDAPADMIN_HTTPS=false:
# PHPLDAPADMIN_LDAP_HOSTS: "openldap"
# ports:
# - "8080:80"
# links:
# - "openldap:openldap"
# depends_on:
# - openldap
scichat-loopback:
image: dacat/scichat-loopback:latest
ports:
- "3030:3030"
depends_on:
- mongodb
links:
- mongodb
volumes:
mongodb_data:
driver: local