-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathdocker-compose.test.yml
56 lines (53 loc) · 1.64 KB
/
docker-compose.test.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
version: '3'
# for running the same tests locally docker-compose -p data-api-docker-tests --file docker-compose.test.yml build
services:
sut:
build: .
depends_on:
- graphql-engine
- db
env_file:
- .env.example
environment:
NODE_ENV: test
HASURA_URL: http://graphql-engine:8080
POSTGRES_URL: postgres://ckan_default:password@db:5432/datastore_default
# command: sh -c './curl-wait-for-it.sh http://graphql-engine:8080/healthz -- yarn test'
command:
[
'./curl-wait-for-it.sh',
'http://graphql-engine:8080/healthz',
'yarn',
'test',
]
graphql-engine:
build:
context: environment/hasura/
dockerfile: Dockerfile
ports:
- '8080'
depends_on:
- db
restart: always
environment:
HASURA_GRAPHQL_DATABASE_URL: postgres://ckan_default:password@db:5432/datastore_default
## enable the console served by server
HASURA_GRAPHQL_ENABLE_CONSOLE: 'true' # set to "false" to disable console
## enable debugging mode. It is recommended to disable this in production
HASURA_GRAPHQL_DEV_MODE: 'true'
HASURA_GRAPHQL_ENABLED_LOG_TYPES: startup, http-log, webhook-log, websocket-log, query-log
## uncomment next line to set an admin secret
# HASURA_GRAPHQL_ADMIN_SECRET: myadminsecretkey
healthcheck:
test: ['CMD', 'curl', '-f', 'http://graphql-engine:8080/healthz']
interval: 30s
timeout: 10s
retries: 5
db:
image: postgres
ports:
- '5432'
environment:
POSTGRES_DB: datastore_default
POSTGRES_USER: ckan_default
POSTGRES_PASSWORD: password