-
Notifications
You must be signed in to change notification settings - Fork 0
/
deps_pro.yml
79 lines (71 loc) · 1.89 KB
/
deps_pro.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
version: "3.9"
services:
bundle-server:
profiles: ["all", "master-datacenter"]
container_name: bundle-server
build:
context: ./bundle-server
ports:
- "8000:8000"
federation-server:
profiles: ["all", "master-datacenter"]
container_name: federation
image: agatawitkowska/federation-example
ports:
- "4000:4000"
- "4001:4001"
- "4002:4002"
- "4003:4003"
openldap:
profiles: ["all", "master-datacenter"]
container_name: openldap
image: osixia/openldap:1.5.0
ports:
- "389:389"
- "636:636"
environment:
- LDAP_READONLY_USER=true
- LDAP_READONLY_USER_USERNAME=read-only-admin
- LDAP_READONLY_USER_PASSWORD=password
graphql-faker:
profiles: ["all", "master-datacenter"]
container_name: graphql-faker
image: apisguru/graphql-faker:latest
volumes:
- ./faker-schema.graphql:/workdir/faker-schema.graphql
command: "faker-schema.graphql"
ports:
- "9002:9002"
upstream:
profiles: ["all", "master-datacenter"]
container_name: httpbin.org
image: kennethreitz/httpbin
restart: always
restcountries:
profiles: ["all", "master-datacenter"]
container_name: restcountries
image: bigpapoo/restcountries:1.0
trevorblades:
profiles: ["all", "master-datacenter"]
container_name: trevorblades
image: mangomm/trevorblades-countries
webhook:
profiles: ["all", "master-datacenter"]
container_name: webhook-server
build:
context: ./webhook-server
ports:
- "9003:9003"
nginx:
profiles: ["all", "master-datacenter"]
container_name: nginx
image: nginx:latest
ports:
- "7000:80"
- "7443:443"
volumes:
- ./confs/nginx.conf:/etc/nginx/nginx.conf
- ./certs/nginx.crt:/etc/nginx/ssl/nginx.crt
- ./certs/nginx.key:/etc/nginx/ssl/nginx.key
depends_on:
- upstream