62 lines
1.5 KiB
YAML
62 lines
1.5 KiB
YAML
version: '3.4'
|
|
|
|
services:
|
|
#nginx:
|
|
# container_name: my-nginx
|
|
# image: nginx:latest
|
|
# restart: always
|
|
# ports:
|
|
# - "80:80"
|
|
# volumes:
|
|
# - ./default.conf:/etc/nginx/conf.d/default.conf
|
|
|
|
damageassesment.api.answers:
|
|
environment:
|
|
- ASPNETCORE_ENVIRONMENT=Development
|
|
ports:
|
|
- "6001:80"
|
|
|
|
|
|
damageassesment.api.attachments:
|
|
environment:
|
|
- ASPNETCORE_ENVIRONMENT=Development
|
|
ports:
|
|
- "6002:80"
|
|
|
|
|
|
damageassesment.api.employees:
|
|
environment:
|
|
- ASPNETCORE_ENVIRONMENT=Development
|
|
ports:
|
|
- "6003:80"
|
|
|
|
damageassesment.api.locations:
|
|
environment:
|
|
- ASPNETCORE_ENVIRONMENT=Development
|
|
ports:
|
|
- "6004:80"
|
|
|
|
damageassesment.api.questions:
|
|
environment:
|
|
- ASPNETCORE_ENVIRONMENT=Development
|
|
ports:
|
|
- "6005:80"
|
|
|
|
damageassesment.api.survey:
|
|
environment:
|
|
- ASPNETCORE_ENVIRONMENT=Development
|
|
ports:
|
|
- "6006:80"
|
|
|
|
damageassesment.api.surveyresponses:
|
|
environment:
|
|
- ASPNETCORE_ENVIRONMENT=Development
|
|
- services__Answers=http://damageassesment.api.answers:80
|
|
- services__Locations=http://damageassesment.api.locations:80
|
|
- services__Questions=http://damageassesment.api.questions:80
|
|
- services__Employees=http://damageassesment.api.employees:80
|
|
- services__Attachments=http://damageassesment.api.attachments:80
|
|
- services__Surveys=http://damageassesment.api.survey:80
|
|
ports:
|
|
- "6007:80"
|
|
|