Added a docker image and compose file for the application
This commit is contained in:
136
obj/Docker/MergedDockerCompose3.cache
Normal file
136
obj/Docker/MergedDockerCompose3.cache
Normal file
@@ -0,0 +1,136 @@
|
||||
name: dockercompose13046784533988757350
|
||||
services:
|
||||
db:
|
||||
environment:
|
||||
POSTGRES_DB: postgres
|
||||
POSTGRES_PASSWORD: postgres
|
||||
POSTGRES_USER: postgres
|
||||
image: postgres:latest
|
||||
networks:
|
||||
default: null
|
||||
ports:
|
||||
- mode: ingress
|
||||
target: 5432
|
||||
published: "5432"
|
||||
protocol: tcp
|
||||
restart: always
|
||||
volumes:
|
||||
- type: volume
|
||||
source: postgres_data
|
||||
target: /var/lib/postgresql/data
|
||||
volume: {}
|
||||
openarchival.blazor:
|
||||
build:
|
||||
context: D:\Nextcloud\Documents\Open-Archival
|
||||
dockerfile: OpenArchival.Blazor/Dockerfile
|
||||
args:
|
||||
BUILD_CONFIGURATION: Debug
|
||||
LAUNCHING_FROM_VS: "true"
|
||||
labels:
|
||||
com.microsoft.created-by: visual-studio
|
||||
com.microsoft.visual-studio.project-name: OpenArchival.Blazor
|
||||
target: base
|
||||
depends_on:
|
||||
db:
|
||||
condition: service_healthy
|
||||
required: true
|
||||
entrypoint:
|
||||
- dotnet
|
||||
- --roll-forward
|
||||
- Major
|
||||
- /VSTools/DistrolessHelper/DistrolessHelper.dll
|
||||
- --wait
|
||||
environment:
|
||||
ASPNETCORE_ENVIRONMENT: Development
|
||||
ASPNETCORE_HTTP_PORTS: "8080"
|
||||
ASPNETCORE_HTTPS_PORTS: "8081"
|
||||
ASPNETCORE_LOGGING__CONSOLE__DISABLECOLORS: "true"
|
||||
ConnectionStrings__DefaultConnection: Host=db;Port=5432;Database=postgres;Username=postgres;Password=postgres
|
||||
DOTNET_USE_POLLING_FILE_WATCHER: "1"
|
||||
NUGET_FALLBACK_PACKAGES: /.nuget/fallbackpackages
|
||||
image: openarchivalblazor:dev
|
||||
labels:
|
||||
com.microsoft.visualstudio.debuggee.arguments: ' --additionalProbingPath /.nuget/packages --additionalProbingPath /.nuget/fallbackpackages "/app/bin/Debug/net9.0/OpenArchival.Blazor.dll"'
|
||||
com.microsoft.visualstudio.debuggee.killprogram: dotnet --roll-forward Major /VSTools/DistrolessHelper/DistrolessHelper.dll --stop dotnet
|
||||
com.microsoft.visualstudio.debuggee.program: dotnet
|
||||
com.microsoft.visualstudio.debuggee.workingdirectory: /app
|
||||
networks:
|
||||
default: null
|
||||
ports:
|
||||
- mode: ingress
|
||||
target: 8080
|
||||
protocol: tcp
|
||||
- mode: ingress
|
||||
target: 8081
|
||||
protocol: tcp
|
||||
tty: true
|
||||
volumes:
|
||||
- type: bind
|
||||
source: C:\Users\Vincent Allen\AppData\Roaming\Microsoft\UserSecrets
|
||||
target: /home/app/.microsoft/usersecrets
|
||||
read_only: true
|
||||
bind:
|
||||
create_host_path: true
|
||||
- type: bind
|
||||
source: C:\Users\Vincent Allen\AppData\Roaming\Microsoft\UserSecrets
|
||||
target: /root/.microsoft/usersecrets
|
||||
read_only: true
|
||||
bind:
|
||||
create_host_path: true
|
||||
- type: bind
|
||||
source: C:\Users\Vincent Allen\AppData\Roaming\ASP.NET\Https
|
||||
target: /home/app/.aspnet/https
|
||||
read_only: true
|
||||
bind:
|
||||
create_host_path: true
|
||||
- type: bind
|
||||
source: C:\Users\Vincent Allen\AppData\Roaming\ASP.NET\Https
|
||||
target: /root/.aspnet/https
|
||||
read_only: true
|
||||
bind:
|
||||
create_host_path: true
|
||||
- type: bind
|
||||
source: D:\Nextcloud\Documents\Open-Archival\OpenArchival.Blazor
|
||||
target: /app
|
||||
bind:
|
||||
create_host_path: true
|
||||
- type: bind
|
||||
source: D:\Nextcloud\Documents\Open-Archival
|
||||
target: /src
|
||||
bind:
|
||||
create_host_path: true
|
||||
- type: bind
|
||||
source: C:\Users\Vincent Allen\vsdbg\vs2017u5
|
||||
target: /remote_debugger
|
||||
bind:
|
||||
create_host_path: true
|
||||
- type: bind
|
||||
source: C:\Users\Vincent Allen\.nuget\packages
|
||||
target: /.nuget/packages
|
||||
read_only: true
|
||||
bind:
|
||||
create_host_path: true
|
||||
- type: bind
|
||||
source: C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages
|
||||
target: /.nuget/fallbackpackages
|
||||
read_only: true
|
||||
bind:
|
||||
create_host_path: true
|
||||
- type: bind
|
||||
source: C:\Program Files\Microsoft Visual Studio\2022\Community\MSBuild\Sdks\Microsoft.Docker.Sdk\tools\linux-x64\net6.0
|
||||
target: /VSTools
|
||||
read_only: true
|
||||
bind:
|
||||
create_host_path: true
|
||||
- type: bind
|
||||
source: C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\CommonExtensions\Microsoft\HotReload
|
||||
target: /HotReloadAgent
|
||||
read_only: true
|
||||
bind:
|
||||
create_host_path: true
|
||||
networks:
|
||||
default:
|
||||
name: dockercompose13046784533988757350_default
|
||||
volumes:
|
||||
postgres_data:
|
||||
name: dockercompose13046784533988757350_postgres_data
|
||||
Reference in New Issue
Block a user