This repository has been archived by the owner on Jan 28, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcompose.yml
72 lines (67 loc) · 1.7 KB
/
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
name: hutch-cohort-discovery-dev
services:
db:
image: postgres:16
restart: always
ports:
- 5432:5432
environment:
POSTGRES_PASSWORD: postgres
adminer:
image: wodby/adminer
depends_on:
- db
restart: always
ports:
- 9000:9000
environment:
ADMINER_DEFAULT_DB_DRIVER: pgsql
ADMINER_DEFAULT_DB_HOST: db
ADMINER_DESIGN: pepa-linha
rabbitmq:
image: rabbitmq:3-management
ports:
- 5672:5672
- 15672:15672
environment:
RABBITMQ_DEFAULT_USER: user
RABBITMQ_DEFAULT_PASS: password
relay:
build:
dockerfile: app/Hutch.Relay/Dockerfile
ports:
- 8080:8080
- 8081:8081
depends_on:
- rabbitmq
- db
environment:
DOTNET_Environment: Development
ConnectionStrings__Default: Server=db;Port=5432;Database=hutch-relay;User Id=postgres;Password=postgres
RelayTaskQueue__ConnectionString: amqp://user:password@rabbitmq:5672
Obfuscation__LowNumberSuppressionThreshold: 0
Obfuscation__RoundingTarget: 0
bunny:
depends_on:
- db
- relay
- rabbitmq
build:
context: app/bunny
dockerfile: Dockerfile
environment:
DATASOURCE_DB_USERNAME: postgres
DATASOURCE_DB_PASSWORD: postgres
DATASOURCE_DB_DATABASE: hutch-omop
DATASOURCE_DB_DRIVERNAME: postgresql
DATASOURCE_DB_SCHEMA: public
DATASOURCE_DB_PORT: 5432
DATASOURCE_DB_HOST: db
TASK_API_BASE_URL: http://relay:8080
TASK_API_USERNAME: username
TASK_API_PASSWORD: password
TASK_API_TYPE:
LOW_NUMBER_SUPPRESSION_THRESHOLD:
ROUNDING_TARGET:
POLLING_INTERVAL: 5
COLLECTION_ID: collection_id