30 lines
603 B
YAML
30 lines
603 B
YAML
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
name: dokuwiki
|
|
namespace: default
|
|
spec:
|
|
replicas: 1
|
|
selector:
|
|
matchLabels:
|
|
app: dokuwiki
|
|
template:
|
|
metadata:
|
|
labels:
|
|
app: dokuwiki
|
|
spec:
|
|
containers:
|
|
- name: dokuwiki
|
|
image: lscr.io/linuxserver/dokuwiki
|
|
ports:
|
|
- containerPort: 80
|
|
protocol: TCP
|
|
volumeMounts:
|
|
- mountPath: /config
|
|
name: dokuwikidata
|
|
volumes:
|
|
- name: dokuwikidata
|
|
persistentVolumeClaim:
|
|
claimName: dokuwiki-pvc
|
|
restartPolicy: Always
|