Changes
Build and Push Docker Images / build (push) Successful in 31s

This commit is contained in:
2026-05-20 14:25:07 +03:00
parent fb5b254570
commit aa79b422e4
12 changed files with 239 additions and 1 deletions
+8 -1
View File
@@ -1,10 +1,17 @@
# .env.template - Template of environment variables for docker-compose
# Copy this file to `.env.production` or `.env.staging` and fill the secret values.
# Copy this file to `.env` (local), `.env.staging`, or `.env.production` and fill the secret values.
# Do NOT commit your `.env.*` files containing real secrets.
# Common
ASPNETCORE_ENVIRONMENT=Development
# Web (myai-web container) - maps to web appsettings Site:Mode section
# Controls the public site experience:
# Normal - full site (default)
# UnderConstruction - redirect visitors to /under-construction.html
# Unavailable - redirect visitors to /site-unavailable.html (HTTP 503)
Site__Mode=Normal
# API (main)
ASPNETCORE_URLS=http://+:8080
APP_ENVIRONMENT_NAME=myai-Development
@@ -260,6 +260,9 @@ services:
- ASPNETCORE_ENVIRONMENT=${ASPNETCORE_ENVIRONMENT:-Production}
- ASPNETCORE_URLS=${ASPNETCORE_URLS:-http://+:8080}
- APP_ENVIRONMENT_NAME=${APP_ENVIRONMENT_NAME:-myai.production}
# Site: matches web appsettings Site section (Normal, UnderConstruction, Unavailable)
- Site__Mode=${Site__Mode:-Normal}
networks:
- myai-network
restart: unless-stopped
@@ -260,6 +260,9 @@ services:
- ASPNETCORE_ENVIRONMENT=${ASPNETCORE_ENVIRONMENT:-Staging}
- ASPNETCORE_URLS=${ASPNETCORE_URLS:-http://+:8080}
- APP_ENVIRONMENT_NAME=${APP_ENVIRONMENT_NAME:-myai.staging}
# Site: matches web appsettings Site section (Normal, UnderConstruction, Unavailable)
- Site__Mode=${Site__Mode:-Normal}
networks:
- myai-network
restart: unless-stopped
+3
View File
@@ -289,6 +289,9 @@ services:
- ASPNETCORE_ENVIRONMENT=${ASPNETCORE_ENVIRONMENT:-Development}
- ASPNETCORE_URLS=${ASPNETCORE_URLS:-http://+:8080}
- APP_ENVIRONMENT_NAME=${APP_ENVIRONMENT_NAME:-myai.local}
# Site: matches web appsettings Site section (Normal, UnderConstruction, Unavailable)
- Site__Mode=${Site__Mode:-Normal}
networks:
- myai-network
restart: unless-stopped