2 Commits

Author SHA1 Message Date
Gitea Actions
beee7d89ea Release v1.0.10 2026-07-08 14:25:15 +00:00
Gitea Actions
7375dfac57 Release v1.0.8-r2 2026-06-23 11:13:07 +00:00
3 changed files with 14 additions and 7 deletions

View File

@@ -6,7 +6,7 @@
# echo "$REGISTRY_TOKEN" | docker login git.hexahost.dev -u KUNDE --password-stdin # echo "$REGISTRY_TOKEN" | docker login git.hexahost.dev -u KUNDE --password-stdin
# Image-Version # Image-Version
IMAGE_TAG=1.0.8 IMAGE_TAG=1.0.10
# --- Allgemein --- # --- Allgemein ---
APP_ENV=production APP_ENV=production
@@ -24,16 +24,21 @@ AUTH_BOOTSTRAP_ADMIN_PASSWORD=CHANGE_ME
PROXMOX_DEFAULT_ROOT_PASSWORD=CHANGE_ME PROXMOX_DEFAULT_ROOT_PASSWORD=CHANGE_ME
# Erreichbare IP/URL des Deployment-Servers (kein localhost!) # Erreichbare HTTPS-URL des Deployment-Servers (kein localhost!)
DEPLOY_SERVER_URL=http://192.168.1.100:8000 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 ---
ISO_PVE_VERSION=9.2-1 ISO_PVE_VERSION=9.2-1
ISO_PVE_DOWNLOAD_URL= ISO_PVE_DOWNLOAD_URL=
# --- CORS (UI-URL anpassen) ---
CORS_ORIGINS=["http://192.168.1.100"]
# --- Cleanup --- # --- Cleanup ---
CLEANUP_ENABLED=true CLEANUP_ENABLED=true
CLEANUP_INTERVAL_HOURS=24 CLEANUP_INTERVAL_HOURS=24

View File

@@ -1 +1 @@
1.0.8 1.0.10

View File

@@ -104,6 +104,8 @@ services:
image: git.hexahost.dev/smueller/eikona-autoinstall-dist/ui:${IMAGE_TAG:-latest} image: git.hexahost.dev/smueller/eikona-autoinstall-dist/ui:${IMAGE_TAG:-latest}
container_name: eikona_ui_prod container_name: eikona_ui_prod
network_mode: host network_mode: host
volumes:
- /opt/docker/eikona/certs:/etc/nginx/certs:ro
depends_on: depends_on:
api: api:
condition: service_started condition: service_started