forked from metabrainz/bookbrainz-site
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
73 lines (66 loc) · 1.65 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
version: '3.4'
services:
bookbrainz-site:
container_name: bookbrainz-site
command: yarn start
build:
context: ./
dockerfile: Dockerfile
target: bookbrainz-dev
restart: unless-stopped
user: bookbrainz
ports:
- "9099:9099"
depends_on:
- elasticsearch
- redis
- postgres
volumes:
- "./config/config.json:/home/bookbrainz/bookbrainz-site/config/config.json:ro"
postgres:
container_name: postgres
restart: unless-stopped
image: postgres:12.3
user: postgres
ports:
- "5432:5432"
environment:
- POSTGRES_USER=postgres
- POSTGRES_HOST_AUTH_METHOD=trust
volumes:
- postgres-data:/var/lib/postgresql/data
elasticsearch:
container_name: elasticsearch
restart: unless-stopped
image: docker.elastic.co/elasticsearch/elasticsearch:5.6.8
environment:
# Skip bootstrap checks (see https://github.com/docker-library/elasticsearch/issues/98)
- transport.host=127.0.0.1
- discovery.zen.minimum_master_nodes=1
- xpack.security.enabled=false
ports:
- "9200:9200"
volumes:
- elasticsearch-data:/usr/share/elasticsearch/data
redis:
container_name: redis
restart: unless-stopped
image: redis:3.2-alpine
command: "redis-server --appendonly yes"
ports:
- "6379:6379"
- "3600:3600"
startup:
image: waisbrot/wait
container_name: startup
restart: "no"
environment:
- TARGETS=redis:6379,postgres:5432,elasticsearch:9200
- TIMEOUT=60
depends_on:
- elasticsearch
- redis
- postgres
volumes:
postgres-data:
elasticsearch-data: