-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdocker-compose.yml
85 lines (73 loc) · 2.18 KB
/
docker-compose.yml
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
---
version: "3.5"
networks:
authenticator:
driver: bridge
volumes:
pgdata:
pgadmindata:
services:
postgres:
image: postgres:9.4
volumes:
- pgdata:/var/lib/postgresql/data
networks:
- authenticator
environment:
POSTGRES_HOST_AUTH_METHOD: "trust"
authenticator-ldap:
image: tacc/slapd
networks:
- authenticator
environment:
LDAP_DOMAIN: "tapis"
LDAP_ORGANISATION: "Tapis"
# primary site in develop
LDAP_ROOTPASS: "jIWPb59CuNM4TwxkkSIk37A"
# associate site in test
# LDAP_ROOTPASS: "Df3CK8Rw79Caxhi1U8kofFw"
migrations:
image: tapis/authenticator-migrations
volumes:
- ./config-local.json:/home/tapis/config.json
# - ./config-local-uh.json:/home/tapis/config.json
networks:
- authenticator
#entrypoint: ["sleep", "99999"]
authenticator:
image: tapis/authenticator
ports:
- "5000:5000"
volumes:
- ./config-local.json:/home/tapis/config.json
# - ./config-local-uh.json:/home/tapis/config.json
# - ./config-local-sdsc.json:/home/tapis/config.json
- ./service.log:/home/tapis/service.log
networks:
- authenticator
depends_on:
- postgres
authenticator-tests:
image: tapis/authenticator-tests
volumes:
- ./config-local.json:/home/tapis/config.json
- ./service.log:/home/tapis/service.log
networks:
- authenticator
# uncomment if you want full standard output for all tests, including ones that pass
# command: -rP
# uncomment if you just want a test container
# entrypoint: ["sleep", "9999999"]
pgadmin:
image: dpage/pgadmin4
environment:
PGADMIN_DEFAULT_EMAIL: "[email protected]"
PGADMIN_DEFAULT_PASSWORD: "password"
ports:
- "8000:80"
networks:
- authenticator
depends_on:
- postgres
volumes:
- pgadmindata:/var/lib/pgadmin