Got fix working for issues editing

This commit is contained in:
Vincent Allen
2025-09-06 09:33:41 -04:00
parent 77318e87d1
commit 781793a27f
561 changed files with 15420 additions and 1067 deletions

View File

@@ -1,8 +1,2 @@
BCK52r5XsyaBdoASqQ391EJen+mjcCvbxgsw/ZFYPjs=>D:\Nextcloud\Documents\Open-Archival\obj\Docker\MergedDockerCompose.cache
4YwNqP6+8JbxqZwg+j3RCX3pDQKWlLOG5fnw1DxWneA=>D:\Nextcloud\Documents\Open-Archival\obj\Docker\MergedDockerCompose1.cache
VrpsK4mvYkeNhk2FQNDA6lvx1iyLyCyrfvFqIG6X4Yk=>D:\Nextcloud\Documents\Open-Archival\obj\Docker\MergedDockerCompose2.cache
LcsrEyhXtSAyblsWuQcLOb+jfBKeDv4wQqfN0p+aVgo=>D:\Nextcloud\Documents\Open-Archival\obj\Docker\MergedDockerCompose3.cache
duOGJOEXAWFjxZiQEDiljvAZ5yPXFZIT/YNgHFELLdg=>D:\Nextcloud\Documents\Open-Archival\obj\Docker\MergedDockerCompose4.cache
o3/+KBvB1QzsoVV7LYScph1s2W2PvR36oPOzHdmG/cQ=>D:\Nextcloud\Documents\Open-Archival\obj\Docker\MergedDockerCompose5.cache
9xH2D94y+b2/pFoecCUfTZQBXKXYqNXjTRMidzmMJp8=>D:\Nextcloud\Documents\Open-Archival\obj\Docker\MergedDockerCompose6.cache
14k9K8kpuRU1Lqe8SAwGcMbjEergPUsz6qy8zT8t2Fs=>D:\Nextcloud\Documents\Open-Archival\obj\Docker\MergedDockerCompose7.cache
z9qnY6u+HRFwN0YXx0lFjNA6uCsPgcWPRfnT3Cx/lu4=>D:\Nextcloud\Documents\Open-Archival\obj\Docker\MergedDockerCompose.cache
Hme+/2yXOAQgzyuEVqmYi8Mmdh/Ge8R1+WY/hLk5o0I=>D:\Nextcloud\Documents\Open-Archival\obj\Docker\MergedDockerCompose1.cache

View File

@@ -1 +1 @@
iXnCmpyZ1VzUzvFUDoH/n2mrLqg6mdDiAA//fylwDEcZ6acz44sq1CN3lYjoWq3EE0+qKOjgu2vk6FzmJJBTrg==
N/yZlWe41R0Stmd9lJTT3JqUP6/81ndw9soYuAP7GYtbnH1PEyPill9cD0r3MvOS/4jR/2UuVBtQLDpXBoT2Wg==

View File

@@ -1,17 +1,56 @@
name: dockercompose13046784533988757350
services:
db:
environment:
POSTGRES_DB: postgres
POSTGRES_PASSWORD: postgres
POSTGRES_USER: postgres
healthcheck:
test:
- CMD-SHELL
- pg_isready -U postgres -d postgres
timeout: 5s
interval: 10s
retries: 5
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
depends_on:
db:
condition: service_healthy
required: true
environment:
ASPNETCORE_ENVIRONMENT: Development
ASPNETCORE_HTTP_PORTS: "8080"
ASPNETCORE_HTTPS_PORTS: "8081"
ConnectionStrings__DefaultConnection: Host=db;Port=5432;Database=postgres;Username=postgres;Password=postgres
image: openarchivalblazor
networks:
default: null
ports:
- mode: ingress
target: 8080
published: "3801"
protocol: tcp
- mode: ingress
target: 8081
published: "4334"
protocol: tcp
- mode: ingress
target: 8080
protocol: tcp
@@ -45,4 +84,7 @@ services:
create_host_path: true
networks:
default:
name: dockercompose13046784533988757350_default
name: dockercompose13046784533988757350_default
volumes:
postgres_data:
name: dockercompose13046784533988757350_postgres_data

View File

@@ -1,5 +1,31 @@
name: dockercompose13046784533988757350
services:
db:
environment:
POSTGRES_DB: postgres
POSTGRES_PASSWORD: postgres
POSTGRES_USER: postgres
healthcheck:
test:
- CMD-SHELL
- pg_isready -U postgres -d postgres
timeout: 5s
interval: 10s
retries: 5
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
@@ -11,6 +37,10 @@ services:
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
@@ -22,6 +52,7 @@ services:
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
@@ -33,6 +64,14 @@ services:
networks:
default: null
ports:
- mode: ingress
target: 8080
published: "3801"
protocol: tcp
- mode: ingress
target: 8081
published: "4334"
protocol: tcp
- mode: ingress
target: 8080
protocol: tcp
@@ -106,4 +145,7 @@ services:
create_host_path: true
networks:
default:
name: dockercompose13046784533988757350_default
name: dockercompose13046784533988757350_default
volumes:
postgres_data:
name: dockercompose13046784533988757350_postgres_data

View File

@@ -1,75 +0,0 @@
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
depends_on:
db:
condition: service_healthy
required: true
environment:
ASPNETCORE_ENVIRONMENT: Development
ASPNETCORE_HTTP_PORTS: "8080"
ASPNETCORE_HTTPS_PORTS: "8081"
ConnectionStrings__DefaultConnection: Host=db;Port=5432;Database=postgres;Username=postgres;Password=postgres
image: openarchivalblazor
networks:
default: null
ports:
- mode: ingress
target: 8080
protocol: tcp
- mode: ingress
target: 8081
protocol: tcp
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
networks:
default:
name: dockercompose13046784533988757350_default
volumes:
postgres_data:
name: dockercompose13046784533988757350_postgres_data

View File

@@ -1,136 +0,0 @@
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

View File

@@ -1,82 +0,0 @@
name: dockercompose13046784533988757350
services:
db:
environment:
POSTGRES_DB: postgres
POSTGRES_PASSWORD: postgres
POSTGRES_USER: postgres
healthcheck:
test:
- CMD-SHELL
- pg_isready -U postgres -d postgres
timeout: 5s
interval: 10s
retries: 5
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
depends_on:
db:
condition: service_healthy
required: true
environment:
ASPNETCORE_ENVIRONMENT: Development
ASPNETCORE_HTTP_PORTS: "8080"
ASPNETCORE_HTTPS_PORTS: "8081"
ConnectionStrings__DefaultConnection: Host=db;Port=5432;Database=postgres;Username=postgres;Password=postgres
image: openarchivalblazor
networks:
default: null
ports:
- mode: ingress
target: 8080
protocol: tcp
- mode: ingress
target: 8081
protocol: tcp
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
networks:
default:
name: dockercompose13046784533988757350_default
volumes:
postgres_data:
name: dockercompose13046784533988757350_postgres_data

View File

@@ -1,143 +0,0 @@
name: dockercompose13046784533988757350
services:
db:
environment:
POSTGRES_DB: postgres
POSTGRES_PASSWORD: postgres
POSTGRES_USER: postgres
healthcheck:
test:
- CMD-SHELL
- pg_isready -U postgres -d postgres
timeout: 5s
interval: 10s
retries: 5
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

View File

@@ -1,82 +0,0 @@
name: dockercompose13046784533988757350
services:
db:
environment:
POSTGRES_DB: postgres
POSTGRES_PASSWORD: postgres
POSTGRES_USER: postgres
healthcheck:
test:
- CMD-SHELL
- pg_isready -U postgres -d postgres
timeout: 5s
interval: 10s
retries: 5
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
depends_on:
db:
condition: service_healthy
required: true
environment:
ASPNETCORE_ENVIRONMENT: Development
ASPNETCORE_HTTP_PORTS: "8080"
ASPNETCORE_HTTPS_PORTS: "8081"
ConnectionStrings__DefaultConnection: Host=db;Port=5432;Database=postgres;Username=postgres;Password=postgres
image: openarchivalblazor
networks:
default: null
ports:
- mode: ingress
target: 8080
protocol: tcp
- mode: ingress
target: 8081
protocol: tcp
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
networks:
default:
name: dockercompose13046784533988757350_default
volumes:
postgres_data:
name: dockercompose13046784533988757350_postgres_data

View File

@@ -1,143 +0,0 @@
name: dockercompose13046784533988757350
services:
db:
environment:
POSTGRES_DB: postgres
POSTGRES_PASSWORD: postgres
POSTGRES_USER: postgres
healthcheck:
test:
- CMD-SHELL
- pg_isready -U postgres -d postgres
timeout: 5s
interval: 10s
retries: 5
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

View File

View File

@@ -0,0 +1 @@
02efabffb7f346e68c1846b5ab496608b1a161c807cedb06011b852885931be7

View File

@@ -0,0 +1,59 @@
D:\Nextcloud\Documents\Open-Archival\bin\Release\OpenArchival.Blazor.deps.json
D:\Nextcloud\Documents\Open-Archival\bin\Release\OpenArchival.Blazor.runtimeconfig.json
D:\Nextcloud\Documents\Open-Archival\bin\Release\OpenArchival.DataAccess.deps.json
D:\Nextcloud\Documents\Open-Archival\bin\Release\OpenArchival.DataAccess.runtimeconfig.json
D:\Nextcloud\Documents\Open-Archival\bin\Release\OpenArchival.DataAccess.staticwebassets.endpoints.json
D:\Nextcloud\Documents\Open-Archival\bin\Release\OpenArchival.DataAccess.exe
D:\Nextcloud\Documents\Open-Archival\bin\Release\appsettings.Development.json
D:\Nextcloud\Documents\Open-Archival\bin\Release\appsettings.json
D:\Nextcloud\Documents\Open-Archival\bin\Release\appsettingstemplate.Development.json
D:\Nextcloud\Documents\Open-Archival\bin\Release\appsettingstemplate.json
D:\Nextcloud\Documents\Open-Archival\bin\Release\OpenArchival.Blazor.staticwebassets.runtime.json
D:\Nextcloud\Documents\Open-Archival\bin\Release\OpenArchival.Blazor.staticwebassets.endpoints.json
D:\Nextcloud\Documents\Open-Archival\bin\Release\OpenArchival.Blazor.exe
D:\Nextcloud\Documents\Open-Archival\bin\Release\OpenArchival.Blazor.dll
D:\Nextcloud\Documents\Open-Archival\bin\Release\OpenArchival.DataAccess.dll
D:\Nextcloud\Documents\Open-Archival\bin\Release\Microsoft.Extensions.DependencyInjection.Abstractions.dll
D:\Nextcloud\Documents\Open-Archival\bin\Release\Microsoft.Extensions.Logging.Abstractions.dll
D:\Nextcloud\Documents\Open-Archival\bin\Release\Microsoft.Extensions.Identity.Core.dll
D:\Nextcloud\Documents\Open-Archival\bin\Release\Microsoft.EntityFrameworkCore.dll
D:\Nextcloud\Documents\Open-Archival\bin\Release\Microsoft.AspNetCore.Components.dll
D:\Nextcloud\Documents\Open-Archival\bin\Release\MudBlazor.dll
D:\Nextcloud\Documents\Open-Archival\bin\Release\Microsoft.AspNetCore.Components.Web.dll
D:\Nextcloud\Documents\Open-Archival\bin\Release\Microsoft.AspNetCore.Authorization.dll
D:\Nextcloud\Documents\Open-Archival\bin\Release\Microsoft.Extensions.Options.dll
D:\Nextcloud\Documents\Open-Archival\bin\Release\Microsoft.AspNetCore.Components.Forms.dll
D:\Nextcloud\Documents\Open-Archival\bin\Release\Microsoft.Extensions.Primitives.dll
D:\Nextcloud\Documents\Open-Archival\bin\Release\CodeBeam.MudExtensions.dll
D:\Nextcloud\Documents\Open-Archival\bin\Release\Microsoft.Extensions.Configuration.Abstractions.dll
D:\Nextcloud\Documents\Open-Archival\bin\Release\Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore.dll
D:\Nextcloud\Documents\Open-Archival\bin\Release\Microsoft.Extensions.Identity.Stores.dll
D:\Nextcloud\Documents\Open-Archival\bin\Release\Microsoft.AspNetCore.Identity.EntityFrameworkCore.dll
D:\Nextcloud\Documents\Open-Archival\bin\Release\Microsoft.Extensions.Logging.dll
D:\Nextcloud\Documents\Open-Archival\bin\Release\Microsoft.EntityFrameworkCore.Relational.dll
D:\Nextcloud\Documents\Open-Archival\bin\Release\Npgsql.EntityFrameworkCore.PostgreSQL.dll
D:\Nextcloud\Documents\Open-Archival\bin\Release\Microsoft.IdentityModel.Tokens.dll
D:\Nextcloud\Documents\Open-Archival\bin\Release\EntityFramework.dll
D:\Nextcloud\Documents\Open-Archival\bin\Release\Microsoft.EntityFrameworkCore.Abstractions.dll
D:\Nextcloud\Documents\Open-Archival\bin\Release\Microsoft.AspNetCore.Cryptography.KeyDerivation.dll
D:\Nextcloud\Documents\Open-Archival\bin\Release\Microsoft.Extensions.Caching.Abstractions.dll
D:\Nextcloud\Documents\Open-Archival\bin\Release\Microsoft.Extensions.DependencyInjection.dll
D:\Nextcloud\Documents\Open-Archival\bin\Release\Microsoft.Extensions.Caching.Memory.dll
D:\Nextcloud\Documents\Open-Archival\bin\Release\Microsoft.JSInterop.dll
D:\Nextcloud\Documents\Open-Archival\bin\Release\Microsoft.Extensions.Localization.Abstractions.dll
D:\Nextcloud\Documents\Open-Archival\bin\Release\Microsoft.Extensions.Localization.dll
D:\Nextcloud\Documents\Open-Archival\bin\Release\Microsoft.AspNetCore.Metadata.dll
D:\Nextcloud\Documents\Open-Archival\bin\Release\CsvHelper.dll
D:\Nextcloud\Documents\Open-Archival\bin\Release\Npgsql.dll
D:\Nextcloud\Documents\Open-Archival\bin\Release\Microsoft.IdentityModel.Logging.dll
D:\Nextcloud\Documents\Open-Archival\bin\Release\System.CodeDom.dll
D:\Nextcloud\Documents\Open-Archival\bin\Release\System.Configuration.ConfigurationManager.dll
D:\Nextcloud\Documents\Open-Archival\bin\Release\System.Data.SqlClient.dll
D:\Nextcloud\Documents\Open-Archival\bin\Release\Microsoft.AspNetCore.Cryptography.Internal.dll
D:\Nextcloud\Documents\Open-Archival\bin\Release\Microsoft.IdentityModel.Abstractions.dll
D:\Nextcloud\Documents\Open-Archival\bin\Release\System.Security.Cryptography.ProtectedData.dll
D:\Nextcloud\Documents\Open-Archival\bin\Release\OpenArchival.Blazor.pdb
D:\Nextcloud\Documents\Open-Archival\bin\Release\OpenArchival.DataAccess.pdb
D:\Nextcloud\Documents\Open-Archival\obj\Release\docker-compose.dcproj.AssemblyReference.cache
D:\Nextcloud\Documents\Open-Archival\obj\Release\docker-compose.dcproj.CoreCompileInputs.cache
D:\Nextcloud\Documents\Open-Archival\obj\Release\docker-c.35A3FFBA.Up2Date