-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yaml
57 lines (56 loc) · 1.12 KB
/
docker-compose.yaml
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
version: '3'
services:
auth:
image: emyann/authz:1.0.1
env_file: ./tools/authz.env
ports:
- '4000:4000'
networks:
- jukebox
depends_on:
- auth-db
auth-db:
image: mongo
restart: always
ports:
- 27017:27017
environment:
MONGO_INITDB_ROOT_USERNAME: root
MONGO_INITDB_ROOT_PASSWORD: root
networks:
- jukebox
db:
image: postgres:latest
restart: always
ports:
- 5432:5432
environment:
POSTGRES_PASSWORD: password
networks:
- jukebox
elasticsearch:
image: docker.elastic.co/elasticsearch/elasticsearch:7.6.1
ports:
- 9200:9200
- 9300:9300
networks:
- jukebox
environment:
- discovery.type=single-node
- http.port=9200
- http.host=0.0.0.0
- transport.host=127.0.0.1
kibana:
image: docker.elastic.co/kibana/kibana:7.6.1
networks:
- jukebox
ports:
- 5601:5601
environment:
SERVER_NAME: kibana.jukebox.com
ELASTICSEARCH_HOSTS: http://elasticsearch:9200
depends_on:
- elasticsearch
networks:
jukebox:
driver: bridge