NextExplorer++

This commit is contained in:
2026-09-15 10:37:11 +10:00
parent 75854ef7f5
commit 52df4409e1
13 changed files with 244 additions and 1 deletions
@@ -0,0 +1,50 @@
apiVersion: apps/v1
kind: Deployment
metadata:
name: nextexplorer
namespace: nextexplorer
labels:
app: nextexplorer
spec:
replicas: 1
selector:
matchLabels:
app: nextexplorer
template:
metadata:
labels:
app: nextexplorer
spec:
containers:
- name: nextexplorer
image: ghcr.io/cerede2000/explorer:3.5.0-lean
env:
- name: PUBLIC_URL
# value: https://st.itch.fyi
value: https://st.itch.fyi
- name: SESSION_SECRET
value: VPd67z54NMceyvnPNaSCtktuePTbcIPU
ports:
- name: web
containerPort: 3000
volumeMounts:
- mountPath: /config
name: csismb-nextexplorer-config
- mountPath: /cache
name: csismb-nextexplorer-cache
- mountPath: /mnt/Storage
name: csismb-nextexplorer-storage
securityContext:
fsGroup: 1000
runAsUser: 1000
runAsGroup: 1000
volumes:
- name: csismb-nextexplorer-config
persistentVolumeClaim:
claimName: csismb-nextexplorer-config
- name: csismb-nextexplorer-cache
persistentVolumeClaim:
claimName: csismb-nextexplorer-cache
- name: csismb-nextexplorer-storage
persistentVolumeClaim:
claimName: csismb-nextexplorer-storage