first test working authorization

This commit is contained in:
Chika 2020-12-22 16:32:16 +03:00
parent 707f9aaa9b
commit 3509bf8007

View File

@ -1,22 +1,30 @@
version: '3.3'
services:
auth:
build: ./EvoCalculator.Auth
ports:
- '8888:8888'
networks:
- calc_network
restart: always
client:
build: ./EvoCalculator
depends_on:
- core
networks:
- calc_network
- calc_network
links:
- core
core:
build: ./EvoCalculator.Core
networks:
- calc_network
- calc_network
proxy:
restart: always
build: ./EvoCalculator.Proxy
build: ./EvoCalculator.Proxy
ports:
- '4000:80'
networks:
@ -24,8 +32,10 @@ services:
- calc_network
depends_on:
- client
- auth
links:
- client
- auth
networks:
calc_network: