17 lines
373 B
YAML
17 lines
373 B
YAML
# Please refer https://aka.ms/HTTPSinContainer on how to setup an https developer certificate for your ASP .NET Core service.
|
|
|
|
version: '3.4'
|
|
|
|
services:
|
|
efb:
|
|
image: efb
|
|
build:
|
|
context: .
|
|
dockerfile: ./Dockerfile
|
|
ports:
|
|
- 5000:5000
|
|
environment:
|
|
- ASPNETCORE_ENVIRONMENT=Development
|
|
volumes:
|
|
- ~/.vsdbg:/remote_debugger:rw
|