fix(actualserver): fix actualserver mountPaths **BREAKING CHANGES** (#18237)
**Description** <!-- Please include a summary of the change and which issue is fixed. Please also include relevant motivation and context. List any dependencies that are required for this change. --> ⚒️ Fixes #18235 Changes the mountPaths from `/app/...` to `/data/...`. **⚙️ Type of change** - [ ] ⚙️ Feature/App addition - [x] 🪛 Bugfix - [X] ⚠️ Breaking change (fix or feature that would cause existing functionality to not work as expected) - [ ] 🔃 Refactor of current code **🧪 How Has This Been Tested?** <!-- Please describe the tests that you ran to verify your changes. Provide instructions so we can reproduce. Please also list any relevant details for your test configuration --> I have tested manually changing the options in the current app installation I have, as well as mounting the paths as additional app storage. **✔️ Checklist:** - [x] ⚖️ My code follows the style guidelines of this project - [x] 👀 I have performed a self-review of my own code - [ ] #️⃣ I have commented my code, particularly in hard-to-understand areas - [ ] 📄 I have made corresponding changes to the documentation - [x] ⚠️ My changes generate no new warnings - [ ] 🧪 I have added tests to this description that prove my fix is effective or that my feature works - [x] ⬆️ I increased versions for any altered app according to semantic versioning --- _Please don't blindly check all the boxes. Read them and only check those that apply. Those checkboxes are there for the reviewer to see what is this all about and the status of this PR with a quick glance._ --------- Signed-off-by: Jakob Bouchard <jakob@bchrd.ca> Co-authored-by: Xstar97TheNoob <9399967+xstar97@users.noreply.github.com>
This commit is contained in:
parent
f9021b6f4e
commit
46c2976f96
|
@ -34,4 +34,4 @@ sources:
|
||||||
- https://github.com/truecharts/charts/tree/master/charts/stable/actualserver
|
- https://github.com/truecharts/charts/tree/master/charts/stable/actualserver
|
||||||
- https://ghcr.io/actualbudget/actual-server
|
- https://ghcr.io/actualbudget/actual-server
|
||||||
type: application
|
type: application
|
||||||
version: 8.1.0
|
version: 9.0.0
|
||||||
|
|
|
@ -34,10 +34,10 @@ service:
|
||||||
persistence:
|
persistence:
|
||||||
server-files:
|
server-files:
|
||||||
enabled: true
|
enabled: true
|
||||||
mountPath: /app/server-files
|
mountPath: /data/server-files
|
||||||
user-files:
|
user-files:
|
||||||
enabled: true
|
enabled: true
|
||||||
mountPath: /app/user-files
|
mountPath: /data/user-files
|
||||||
portal:
|
portal:
|
||||||
open:
|
open:
|
||||||
enabled: true
|
enabled: true
|
||||||
|
|
Loading…
Reference in New Issue