@nebulon I don't really know the S3 system they used
jbrichez
Posts
-
General backup error from one custom app -
General backup error from one custom appOk my bad... The bucket wasn't existing anymore.
But still the error should be another one -
General backup error from one custom appThere is logs files yes.
UPDATE: same problem with invoiceNinja.
So problem not only linked to my custom app -
General backup error from one custom app@jdaviescoates Hmm sounds like to be. I'm not a specialist of Cloudron so maybe a dev could says if one of those involved packages is used
-
General backup error from one custom app@nebulon I'm using contabo object storage.
-
General backup error from one custom app@nebulon Yes no problem with other app.
But because of this one failed, global backup failed too. -
General backup error from one custom appHi everyone,
I have some custom app installed on my Cloudron.
I scheduled global backup everyday.
Since 4 days now I have a backup error:Error uploading snapshot/app_032a1955-1996-42d5-8396-478d39a39b7d.tar.gz.enc. Message: Non-whitespace before first tag. Line: 0 Column: 1 Char: { HTTP Code: XMLParserError
I localized the app from where the error come from. But i don't understand the point.
Can anyone help me ?
Thanks you -
[Arr* suite] Sonarr, radarr, prowlarr and nzbget@girish Thanks, will take a look !
-
[Arr* suite] Sonarr, radarr, prowlarr and nzbget@girish Yep exactly ! it already has been packaged before but i never succeed to reach the github.
Ok I will add a licence. Do you have any advice on this ?
-
AFFiNE - open-source Notion, Miro, Monday, Outline, Appflowy alternativeLook amazing ! Would ne great to have an image
-
[Arr* suite] Sonarr, radarr, prowlarr and nzbgetHi everybody,
After following some discussion here, and unfortunately, some broken link... I decided to created myself all cloudron custom app to create a fully functionnal Plex like setup.
You will find everything on my github.
Contains:- Radarr
- Sonarr
- Prowlarr
- Nzbget
- Jellyseer
Fells free to give me some feedback or improve the docker images.
-
Custom app: docker volume mapping@girish I think it is. But this was not really clear when i read it the first time
-
Custom app: docker volume mappingI successfully started the app then when i check the container's volume I can see that:
[{bind /media/movies /media/movies true rprivate} {bind /home/yellowtent/appsdata/4a224e49-5a30-49ae-bb2b-2b22731ab6ed/data /app/data true rprivate} {volume 585faa40fe07d43726062f11d0530fad796806b03a3c1c39daab3a9a86b14542 /var/lib/docker/volumes/585faa40fe07d43726062f11d0530fad796806b03a3c1c39daab3a9a86b14542/_data /tmp local true } {volume 28fcf47257a3b52162a2998df0eff0b325570c0cef49478f37cff3ecea7d0fda /var/lib/docker/volumes/28fcf47257a3b52162a2998df0eff0b325570c0cef49478f37cff3ecea7d0fda/_data /run local true }]
There is my question answer probably...
This is the mapping I was looking forWhen we used the cloudron cli, behind you automatically create a volume and attached it my custom app...
I didn't see that in the doc. Is it written somewhere ? -
Custom app: docker volume mappingOk i understant but where is made the mapping exactly ?
EDIT: after some research, yes the app need to store some files
-
Custom app: docker volume mapping@timconsidine I'm using a pre-built image from docker hub
-
Custom app: docker volume mapping@timconsidine I have connected my cloudron cli to my cloudron instance and i'm running command from my computer:
cloudron install --image hotio/jellyseerr
No i don't think the config will change
-
Custom app: docker volume mappingHi,
I'm trying to create a custom cloudron app for this app: jellyseerr.
I successfully created the CloudronManifest.json file{ "id": "jellyseerr.com", "title": "Jellyseerr", "author": "Girish Ramakrishnan <girish@cloudron.io>", "description": "Jellyseerr app", "tagline": "A great beginning", "version": "0.0.1", "healthCheckPath": "/", "httpPort": 5055, "addons": { "localstorage": {} }, "manifestVersion": 2, "website": "https://www.example.com", "contactEmail": "support@clourdon.io", "icon": "file://icon.png", "tags": [ "test", "collaboration" ], "mediaLinks": [ "https://images.rapgenius.com/fd0175ef780e2feefb30055be9f2e022.520x343x1.jpg" ] }
But I have some trouble: the app crashed:
.It's seems to be because the docker image need to configure "/config" folder when running:
docker run --rm \ --name jellyseerr \ -p 5055:5055 \ -e PUID=1000 \ -e PGID=1000 \ -e UMASK=002 \ -e TZ="Etc/UTC" \ -v /<host_folder_config>:/config \ ghcr.io/hotio/jellyseerr
I checked some image from cloudron image hub but i still didn't understand where the mapping is done.
How do I manage to link the volume ?Thank you.