fix up docker-compose

This commit is contained in:
Karol Wypchlo 2020-08-01 17:04:23 +02:00
parent 06f0946317
commit 966b2e82a0
1 changed files with 4 additions and 2 deletions

View File

@ -55,6 +55,8 @@ services:
- 80 - 80
depends_on: depends_on:
- docker-host - docker-host
- health-check
- handshake-api
handshake: handshake:
build: build:
@ -83,6 +85,7 @@ services:
container_name: handshake-api container_name: handshake-api
restart: unless-stopped restart: unless-stopped
environment: environment:
- HOSTNAME=0.0.0.0
- HSD_HOST=handshake - HSD_HOST=handshake
- HSD_NETWORK=main - HSD_NETWORK=main
- HSD_PORT=12037 - HSD_PORT=12037
@ -94,7 +97,6 @@ services:
- 3100 - 3100
depends_on: depends_on:
- handshake - handshake
- nginx
health-check: health-check:
build: build:
@ -108,9 +110,9 @@ services:
networks: networks:
- shared - shared
environment: environment:
- HOSTNAME=0.0.0.0
- PORTAL_URL=nginx - PORTAL_URL=nginx
expose: expose:
- 3100 - 3100
depends_on: depends_on:
- docker-host - docker-host
- nginx