forked from FRINXio/frinx-services-python-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
42 lines (39 loc) · 1.01 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
version: '3.8'
services:
postgres:
image: frinx/postgres:12.10
environment:
- POSTGRES_USER=postgres
- POSTGRES_PASSWORD=postgres
healthcheck:
test: pg_isready -U postgres
interval: 10s
timeout: 5s
retries: 5
start_period: 5s
schellar:
image: frinx/schellar:${IMAGE_TAG:?}
environment:
- CONDUCTOR_API_URL=http://conductor-server:8080/api
- POSTGRES_HOST=postgres
- POSTGRES_PORT=5432
- POSTGRES_DB=postgres
- POSTGRES_USER=postgres
- POSTGRES_PASSWORD=postgres
depends_on:
postgres:
condition: service_healthy
healthcheck:
test: wget --spider -q 127.0.0.1:3000/liveness
interval: 10s
timeout: 5s
retries: 5
start_period: 20s
converter:
image: frinx/graphql-pydantic-converter:1.2.2
depends_on:
schellar:
condition: service_healthy
volumes:
- ./frinx_api/schellar/:/home/
command: '--url http://schellar:3000/query -o /home/__init__.py'