From beee7d89eafc79d9b2ee5111959c57b4fc2b6749 Mon Sep 17 00:00:00 2001 From: Gitea Actions Date: Wed, 8 Jul 2026 14:25:15 +0000 Subject: [PATCH] Release v1.0.10 --- .env.example | 17 +++++++++++------ VERSION | 2 +- docker-compose.yml | 2 ++ 3 files changed, 14 insertions(+), 7 deletions(-) diff --git a/.env.example b/.env.example index aae6163..6ae6a94 100644 --- a/.env.example +++ b/.env.example @@ -6,7 +6,7 @@ # echo "$REGISTRY_TOKEN" | docker login git.hexahost.dev -u KUNDE --password-stdin # Image-Version -IMAGE_TAG=1.0.8-r2 +IMAGE_TAG=1.0.10 # --- Allgemein --- APP_ENV=production @@ -24,16 +24,21 @@ AUTH_BOOTSTRAP_ADMIN_PASSWORD=CHANGE_ME PROXMOX_DEFAULT_ROOT_PASSWORD=CHANGE_ME -# Erreichbare IP/URL des Deployment-Servers (kein localhost!) -DEPLOY_SERVER_URL=http://192.168.1.100:8000 +# Erreichbare HTTPS-URL des Deployment-Servers (kein localhost!) +DEPLOY_SERVER_URL=https://192.168.1.100 + +# TLS-Zertifikate für die UI (Let's Encrypt oder eigene CA): +# /opt/docker/eikona/certs/fullchain.pem +# /opt/docker/eikona/certs/privkey.pem +# Ohne Zertifikate startet die UI im HTTP-Modus (nur für Tests). + +# --- CORS (HTTPS-UI-URL anpassen) --- +CORS_ORIGINS=["https://192.168.1.100"] # --- ISO --- ISO_PVE_VERSION=9.2-1 ISO_PVE_DOWNLOAD_URL= -# --- CORS (UI-URL anpassen) --- -CORS_ORIGINS=["http://192.168.1.100"] - # --- Cleanup --- CLEANUP_ENABLED=true CLEANUP_INTERVAL_HOURS=24 diff --git a/VERSION b/VERSION index f8d2981..7ee7020 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.0.8-r2 +1.0.10 diff --git a/docker-compose.yml b/docker-compose.yml index c821dd9..d032e27 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -104,6 +104,8 @@ services: image: git.hexahost.dev/smueller/eikona-autoinstall-dist/ui:${IMAGE_TAG:-latest} container_name: eikona_ui_prod network_mode: host + volumes: + - /opt/docker/eikona/certs:/etc/nginx/certs:ro depends_on: api: condition: service_started