-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
107 lines (99 loc) · 2.16 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
<<<<<<< HEAD
version: '3.8'
services:
fetchpix:
build:
context: .
dockerfile: Dockerfile
ports:
- '5000:5000'
- '5001:5001'
environment:
- PORT=5000
- DOCS_PORT=5001
depends_on:
- elasticsearch
volumes:
- .:/app
- ./logs:/src/logs
command: bun run index.ts --watch --hot | pino-pretty
restart: always
elasticsearch:
image: elasticsearch:8.15.1
ports:
- '9200:9200'
environment:
- discovery.type=single-node
- cluster.routing.allocation.enable=all
- cluster.routing.allocation.node_concurrent_recoveries=2
- xpack.security.enabled=false
- xpack.security.transport.ssl.enabled=false
restart: always
kibana:
image: kibana:8.15.1
ports:
- '5601:5601'
depends_on:
- elasticsearch
restart: always
filebeat:
build:
context: ./filebeat
command: filebeat -e -strict.perms=false
volumes:
- ./logs:/src/logs
depends_on:
- elasticsearch
- kibana
restart: always
=======
version: '3.8'
services:
fetchpix:
build:
context: .
dockerfile: Dockerfile
ports:
- '5000:5000'
- '5001:5001'
environment:
- PORT=5000
- DOCS_PORT=5001
depends_on:
- elasticsearch
volumes:
- .:/app
- ./logs:/src/logs
command: bun run index.ts --watch --hot | pino-pretty
restart: always
elasticsearch:
image: elasticsearch:8.15.1
ports:
- '9200:9200'
environment:
- discovery.type=single-node
- cluster.routing.allocation.enable=all
- cluster.routing.allocation.node_concurrent_recoveries=2
- xpack.security.enabled=false
- xpack.security.transport.ssl.enabled=false
restart: always
kibana:
image: kibana:8.15.1
ports:
- '5601:5601'
depends_on:
- elasticsearch
restart: always
environment:
- discovery.type=single-node
filebeat:
build:
context: ./filebeat
command: filebeat -e -strict.perms=false
volumes:
- ./logs:/src/logs
depends_on:
- elasticsearch
- kibana
restart: always
>>>>>>> 0f3bb06 (test)