-
-
Notifications
You must be signed in to change notification settings - Fork 286
/
docker-compose.api.yml
69 lines (63 loc) · 1.62 KB
/
docker-compose.api.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
services:
bookbrainz-api:
container_name: bookbrainz-api
command: yarn run start-api
build:
context: ./
dockerfile: Dockerfile
target: bookbrainz-dev
restart: unless-stopped
ports:
- "9098:9098"
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
# 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: