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,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