Skip to content

Commit

Permalink
Wrong volume path for uploaded files
Browse files Browse the repository at this point in the history
Upon debugging why I lost an attachment after a deployment restart, I came upon a possibly wrong path for the upload volume mount.
Changing it from /var/www/html/storage/upload solved the problem for me and the data now survives a deployment restart.
  • Loading branch information
jpgrego committed Apr 14, 2022
1 parent a9d588b commit e909714
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion kustomize/firefly-iii.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ spec:
- containerPort: 8080
name: firefly-iii
volumeMounts:
- mountPath: "/var/www/html/firefly-iii/storage/upload"
- mountPath: "/var/www/html/storage/upload"
name: firefly-iii-upload
imagePullPolicy: Always
volumes:
Expand Down

0 comments on commit e909714

Please sign in to comment.