This repository was archived by the owner on Oct 21, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathdocker-compose.dev.yml
63 lines (63 loc) · 1.58 KB
/
docker-compose.dev.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
version: '3'
services:
db:
image: postgres:12.1
environment:
POSTGRES_PASSWORD: "postgres"
ports:
- 5432:5432
volumes:
- ./scripts/databases/postgres.sql:/docker-entrypoint-initdb.d/database.sql:ro
mongo:
image: mongo:4.2.1
ports:
- 27017:27017
volumes:
- ./scripts/databases/mongo.js:/docker-entrypoint-initdb.d/database.js:ro
ldap:
image: osixia/openldap:1.3.0
environment:
LDAP_ORGANISATION: "Wanari"
LDAP_DOMAIN: "wanari.com"
LDAP_BASE_DN: "dc=wanari,dc=com"
LDAP_READONLY_USER: "true"
volumes:
- ./scripts/ldap/ldif:/container/service/slapd/assets/config/bootstrap/ldif/custom
ports:
- 389:389
command: --copy-service
nginx:
image: nginx:stable-alpine
command: "/etc/nginx/host_dns_hack.sh"
volumes:
- ./scripts/nginx/proxy.conf:/etc/nginx/conf.d/default.conf
- ./scripts/nginx/cert.key:/etc/nginx/ssl/cert.key
- ./scripts/nginx/cert.pem:/etc/nginx/ssl/cert.pem
- ./scripts/nginx/www:/var/www
- ./scripts/nginx/host_dns_hack.sh:/etc/nginx/host_dns_hack.sh
ports:
- 9443:9443
- 8080:8080
smtp:
image: mailhog/mailhog:v1.0.0
ports:
- 8025:8025/tcp
- 1025:1025/tcp
jaeger:
image: jaegertracing/all-in-one:1.15.1
environment:
COLLECTOR_ZIPKIN_HTTP_PORT: 9411
ports:
- 5775:5775/udp
- 6831:6831/udp
- 6832:6832/udp
- 5778:5778
- 16686:16686
- 14268:14268
- 9411:9411
rabbitmq:
image: rabbitmq:3.8.1-management
hostname: "rabbitmq"
ports:
- 5672:5672
- 15672:15672