From dd50625d673533dba3220b76dc9eff4d8f68c5fd Mon Sep 17 00:00:00 2001 From: hualin Date: Wed, 8 Jan 2025 15:08:35 +0800 Subject: [PATCH] add standalone container --- README.md | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index ecbda54..13a5353 100644 --- a/README.md +++ b/README.md @@ -98,7 +98,7 @@ services: - ASPNETCORE_HTTPS_PORTS=443 - DatabaseSettings__DBProvider=sqlite - DatabaseSettings__ConnectionString=Data Source=CleanAspireDb.db - - AllowedCorsOrigins=https://cleanaspire.blazorserver.com,https://localhost:7114 + - AllowedCorsOrigins=https://cleanaspire.blazorserver.com,https://standalone.blazorserver.com,https://localhost:7114 - Authentication__Google__ClientId= - Authentication__Google__ClientSecret= - SendGrid__ApiKey= @@ -110,7 +110,6 @@ services: - "8019:80" - "8018:443" - blazorweb: image: blazordevlab/cleanaspire-webapp:0.0.62 environment: @@ -123,6 +122,12 @@ services: - "8015:80" - "8014:443" + standalone: + image: blazordevlab/cleanaspire-standalone:0.0.62 + ports: + - "8020:80" + - "8021:443" + ```