-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
43 lines (40 loc) · 804 Bytes
/
docker-compose.yml
File metadata and controls
43 lines (40 loc) · 804 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
services:
sveltekit:
build:
context: RMPweb/
ports:
- 3000:3000
depends_on:
- elasticsearch
networks:
- fullstack
kibana:
image: docker.elastic.co/kibana/kibana:8.12.2
container_name : kibana
depends_on:
- elasticsearch
environment:
- ELASTICSEARCH_HOSTS=http://elasticsearch:9200
ports:
- 5601:5601
networks:
- fullstack
elasticsearch:
container_name: elasticsearch
image: elasticsearch:8.12.2
ports:
- 9200:9200
- 9300:9300
environment:
- "discovery.type=single-node"
- xpack.security.enabled=false
#for testing
volumes:
- data:/usr/share/elasticsearch/data
networks:
- fullstack
volumes:
data:
networks:
fullstack:
driver: bridge