fix: add allowed hosts and logs volume for homepage

This commit is contained in:
2026-03-16 17:50:17 +01:00
parent f5f96fcb29
commit 96287ba6c8
@@ -19,9 +19,14 @@ spec:
image: ghcr.io/gethomepage/homepage:latest image: ghcr.io/gethomepage/homepage:latest
ports: ports:
- containerPort: 3000 - containerPort: 3000
env:
- name: HOMEPAGE_ALLOWED_HOSTS
value: "homepage.net-scope.org"
volumeMounts: volumeMounts:
- name: config - name: config
mountPath: /app/config mountPath: /app/config
- name: logs
mountOath: /app/config/logs
resources: resources:
requests: requests:
memory: "128Mi" memory: "128Mi"
@@ -33,3 +38,5 @@ spec:
- name: config - name: config
configMap: configMap:
name: homepage-config name: homepage-config
- name: logs
emptyDir: {}