- Added Dockerfile for containerizing the app. - Created docker-compose.yml for managing services. - Updated connection strings for Docker compatibility.
36 lines
984 B
Plaintext
36 lines
984 B
Plaintext
name: dockercompose6909980062609839317
|
|
services:
|
|
survey-beta:
|
|
build:
|
|
context: C:\Users\alioa\Source\Repos\survey-beta2
|
|
dockerfile: survey-beta/Dockerfile
|
|
environment:
|
|
ASPNETCORE_ENVIRONMENT: Development
|
|
ASPNETCORE_HTTP_PORTS: "8080"
|
|
ASPNETCORE_HTTPS_PORTS: "8081"
|
|
image: surveybeta
|
|
networks:
|
|
default: null
|
|
ports:
|
|
- mode: ingress
|
|
target: 8080
|
|
protocol: tcp
|
|
- mode: ingress
|
|
target: 8081
|
|
protocol: tcp
|
|
volumes:
|
|
- type: bind
|
|
source: C:\Users\alioa\AppData\Roaming/Microsoft/UserSecrets
|
|
target: /home/app/.microsoft/usersecrets
|
|
read_only: true
|
|
bind:
|
|
create_host_path: true
|
|
- type: bind
|
|
source: C:\Users\alioa\AppData\Roaming/ASP.NET/Https
|
|
target: /home/app/.aspnet/https
|
|
read_only: true
|
|
bind:
|
|
create_host_path: true
|
|
networks:
|
|
default:
|
|
name: dockercompose6909980062609839317_default |