Skip to content

Commit fdfa87b

Browse files
authored
Merge pull request #1236 from jembi/fix-docker-connection-string
Fix docker connection string
2 parents 43cdb04 + 315712e commit fdfa87b

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

infrastructure/docker-compose.yml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -17,27 +17,27 @@ services:
1717
image: jembi/openhim-core:latest
1818
restart: unless-stopped
1919
environment:
20-
- mongo_url="mongodb://mongo-db/openhim-development"
21-
- mongo_atnaUrl="mongodb://mongo-db/openhim-development"
22-
- NODE_ENV="development"
20+
- mongo_url=mongodb://mongo-db/openhim-development
21+
- mongo_atnaUrl=mongodb://mongo-db/openhim-development
22+
- NODE_ENV=development
2323
- api_authenticationTypes=["token", "basic", "openid", "local"]
2424
- authentication_enableCustomTokenAuthentication=true
2525
- authentication_enableJWTAuthentication=true
2626
- authentication_jwt_secretOrPublicKey=secret
2727
- authentication_jwt_algorithms=HS256
2828
- authentication_jwt_issuer=openhim
29-
- openhimConsoleBaseUrl="http://localhost:9000"
29+
- openhimConsoleBaseUrl=http://localhost:9000
3030
ports:
3131
- "8080:8080"
3232
- "5000:5000"
3333
- "5001:5001"
3434
networks:
3535
- openhim
3636
healthcheck:
37-
test: "curl -sSk https://openhim-core:8080/heartbeat || exit 1"
38-
interval: 30s
39-
timeout: 30s
40-
retries: 3
37+
test: "curl -sSk https://openhim-core:8080/heartbeat || exit 1"
38+
interval: 30s
39+
timeout: 30s
40+
retries: 3
4141

4242
openhim-console:
4343
container_name: openhim-console
@@ -48,10 +48,10 @@ services:
4848
ports:
4949
- "9000:80"
5050
healthcheck:
51-
test: "curl -sS http://openhim-console || exit 1"
52-
interval: 30s
53-
timeout: 30s
54-
retries: 3
51+
test: "curl -sS http://openhim-console || exit 1"
52+
interval: 30s
53+
timeout: 30s
54+
retries: 3
5555

5656
volumes:
5757
mongo-data:

0 commit comments

Comments
 (0)