Update Docker configuration to change server port from 8000 to 8080 across Dockerfile and docker-compose files. Enhance CSS for improved dark theme contrast and readability with new color variables and styles.

This commit is contained in:
2026-02-07 10:34:06 +03:00
parent 51b02eb6a4
commit a6fa8325cd
4 changed files with 36 additions and 8 deletions

View File

@@ -10,13 +10,13 @@ services:
dockerfile: Dockerfile
container_name: watcher-visio
ports:
- "8000:8000"
- "8080:8080"
environment:
- PYTHONUNBUFFERED=1
# Override via environment or env_file (e.g. env_file: .env):
# PROMETHEUS_URL, OPENSTACK_CLOUD, OPENSTACK_REGION_NAME, SECRET_KEY
healthcheck:
test: ["CMD", "curl", "-f", "http://127.0.0.1:8000/"]
test: ["CMD", "curl", "-f", "http://127.0.0.1:8080/"]
interval: 30s
timeout: 10s
retries: 3