forked from Bahmni/pacs-integration
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdocker-compose.yml
31 lines (30 loc) · 930 Bytes
/
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
version: "3.7"
services:
hip-atomfeed-listener:
container_name: hip-atomfeed-listener
image: bahmniindiadistro/hip-atomfeed
environment:
- DATABASE_URL=jdbc:postgresql://db:5432/
- DATABASE_NAME=hip-atomfeed-listener
- DATABASE_USERNAME=postgres
- DATABASE_PASSWORD=welcome
- OPENMRS_URL=https://abdm.bahmni-covid19.in/openmrs/ws/rest/v1/session
- OPENMRS_ENCOUNTER_FEED_URL=https://abdm.bahmni-covid19.in/openmrs/ws/atomfeed/encounter/recent
- OPENMRS_USERNAME=
- OPENMRS_PASSWRD=
- PHONE_NUMBER=
- HIP_URL=https://abdm.bahmni-covid19.in/hiprovider
db:
container_name: db
image: postgres
environment:
- POSTGRES_USER=postgres
- POSTGRES_PASSWORD=welcome
ports:
- "5432:5432"
volumes:
- postgresql:/var/lib/postgresql
- postgresql_data:/var/lib/postgresql/data
volumes:
postgresql:
postgresql_data: