fix: css bug after container browser update

This commit is contained in:
2026-01-26 21:46:32 +01:00
parent a5f5c37225
commit 6998d07c6b
5 changed files with 149 additions and 215 deletions

View File

@@ -13,9 +13,14 @@ services:
- ${POSTGRES_PATH}/initdb:/docker-entrypoint-initdb.d
ports:
- ${POSTGRES_PORT}:5432
healthcheck:
test: ["CMD", "pg_isready", "-U", "${POSTGRES_USER}", "--dbname", "${POSTGRES_DB}"]
interval: 10s
timeout: 5s
retries: 5
backend:
image: git.letsstein.de/tom/arbeitszeitmessung-webserver
image: git.letsstein.de/tom/arbeitszeitmessung-webserver:dev
env_file:
- .env
environment:
@@ -24,7 +29,8 @@ services:
ports:
- ${WEB_PORT}:8080
depends_on:
- db
db:
condition: service_healthy
volumes:
- ${LOG_PATH}:/app/logs
restart: unless-stopped