Refactor HTML and configuration files for improved structure and consistency
- Updated videos.html to enhance readability and maintainability. - Refactored webpack.config.js for better organization and clarity. - Cleaned up TypeScript configuration files (tsconfig.app.json, tsconfig.json, tsconfig.spec.json) for consistency in formatting. - Adjusted docker-compose.yaml for improved formatting and readability.
This commit is contained in:
@@ -1,20 +1,20 @@
|
||||
version: '3'
|
||||
|
||||
services:
|
||||
app:
|
||||
image: registry.lesko.me/marek/centrum:latest
|
||||
depends_on:
|
||||
- db
|
||||
restart: unless-stopped
|
||||
environment:
|
||||
- ASPNETCORE_ENVIRONMENT=Production
|
||||
- ConnectionStrings__DefaultConnection=Server=localhost;Database=CentrumDb;User Id=sa;Password=$DB_PASSWORD;TrustServerCertificate=True;
|
||||
network_mode: host
|
||||
|
||||
db:
|
||||
image: mcr.microsoft.com/mssql/server:2019-latest
|
||||
restart: unless-stopped
|
||||
network_mode: host
|
||||
environment:
|
||||
SA_PASSWORD: $DB_PASSWORD
|
||||
ACCEPT_EULA: Y
|
||||
version: '3'
|
||||
|
||||
services:
|
||||
app:
|
||||
image: registry.lesko.me/marek/centrum:latest
|
||||
depends_on:
|
||||
- db
|
||||
restart: unless-stopped
|
||||
environment:
|
||||
- ASPNETCORE_ENVIRONMENT=Production
|
||||
- ConnectionStrings__DefaultConnection=Server=localhost;Database=CentrumDb;User Id=sa;Password=$DB_PASSWORD;TrustServerCertificate=True;
|
||||
network_mode: host
|
||||
|
||||
db:
|
||||
image: mcr.microsoft.com/mssql/server:2019-latest
|
||||
restart: unless-stopped
|
||||
network_mode: host
|
||||
environment:
|
||||
SA_PASSWORD: $DB_PASSWORD
|
||||
ACCEPT_EULA: Y
|
||||
|
||||
Reference in New Issue
Block a user