68 lines
1.5 KiB
YAML
68 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-local.conf
|
||
|
#- ./certs:/etc/nginx/certs
|
||
|
#- ./error.log:/var/log/nginx/error.log
|
||
|
|
||
|
damageassesment.api.answers:
|
||
|
environment:
|
||
|
- ASPNETCORE_ENVIRONMENT=Development
|
||
|
ports:
|
||
|
- "80"
|
||
|
|
||
|
damageassesment.api.attachments:
|
||
|
environment:
|
||
|
- ASPNETCORE_ENVIRONMENT=Development
|
||
|
ports:
|
||
|
- "80"
|
||
|
|
||
|
|
||
|
damageassesment.api.employees:
|
||
|
environment:
|
||
|
- ASPNETCORE_ENVIRONMENT=Development
|
||
|
ports:
|
||
|
- "80"
|
||
|
|
||
|
|
||
|
damageassesment.api.locations:
|
||
|
environment:
|
||
|
- ASPNETCORE_ENVIRONMENT=Development
|
||
|
ports:
|
||
|
- "80"
|
||
|
|
||
|
|
||
|
damageassesment.api.questions:
|
||
|
environment:
|
||
|
- ASPNETCORE_ENVIRONMENT=Development
|
||
|
ports:
|
||
|
- "80"
|
||
|
|
||
|
|
||
|
damageassesment.api.survey:
|
||
|
environment:
|
||
|
- ASPNETCORE_ENVIRONMENT=Development
|
||
|
ports:
|
||
|
- "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:
|
||
|
- "80"
|
||
|
|