-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
59 lines (58 loc) · 1.37 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
version: '1'
services:
elasticsearch:
image: docker.elastic.co/elasticsearch/elasticsearch:7.15.0
container_name: elasticsearch
environment:
- "discovery.type=single-node"
- bootstrap.memory_lock=true
- xpack.security.enabled=false
ports:
- "9200:9200"
- "9300:9300"
ulimits:
memlock:
soft: -1
hard: -1
kibana:
image: docker.elastic.co/kibana/kibana:7.15.0
container_name: kibana
hostname: kibana
environment:
- ELASTICSEARCH_HOSTS=http://elasticsearch:9200
ports:
- 5601:5601
links:
- elasticsearch:elasticsearch
depends_on:
- elasticsearch
db:
image: postgres
restart: always
environment:
- POSTGRES_USER=postgres
- POSTGRES_PASSWORD=postgres
- POSTGRES_DB=elastic_search_development
- POSTGRES_HOST_AUTH_METHOD=trust
ports:
- 5432:5432
volumes:
- postgres:/var/lib/postgresql/data
web:
build: .
entrypoint: ./docker-entrypoint.sh
ports:
- 3000:3000
environment:
- RAILS_ENV=development
- POSTGRES_USER=postgres
- POSTGRES_PASSWORD=postgres
- POSTGRES_DB=db
- ELASTICSEARCH_URL=http://elasticsearch:9200
volumes:
- .:/usr/src/app
command: "bundle exec rails s -b 0.0.0.0"
depends_on:
- db
volumes:
postgres: