Hi,
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.