-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
49 lines (43 loc) · 899 Bytes
/
docker-compose.yml
File metadata and controls
49 lines (43 loc) · 899 Bytes
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
version: '2'
volumes:
elasticsearch_data: {}
postgres_data: {}
nginx_tls: {}
services:
postgres:
image: postgres
volumes:
- postgres_data:/var/lib/postgresql/data
environment:
- POSTGRES_DB=tinyauth
- POSTGRES_USER=tinyauth
- POSTGRES_PASSWORD=tinyauth
tinyauth:
image: tinyauth/tinyauth:dev
environment:
- POSTGRES_USER=tinyauth
- POSTGRES_PASSWORD=tinyauth
ports:
- "127.0.0.1:5000:5000"
elasticsearch:
build: .
volumes:
- elasticsearch_data:/usr/share/elasticsearch/data
ports:
- "127.0.0.1:9200:9200"
kibana:
build:
context: kibana
dockerfile: Dockerfile
depends_on:
- elasticsearch
nginx:
build:
context: nginx
dockerfile: Dockerfile
depends_on:
- kibana
volumes:
- nginx_tls:/etc/nginx/external/
ports:
- "127.0.0.1:443:443"