Cloudron makes it easy to run web apps like WordPress, Nextcloud, GitLab on your server. Find out more or install now.


Skip to content
  • Feature request: rsync

    LAMP
    3
    1 Votes
    3 Posts
    35 Views
    girishG
    @andreasdueren There is now a cloudron sync push/pull which only uploads changed files . Work similar to rsync in the sense that it uses size+mtime to detect changes. It's not possible to use rsync binary itself. That requires either ssh or rsync daemon - neither is available in app containers.
  • Cloudron CLI - Updates

    Pinned App Packaging & Development
    24
    0 Votes
    24 Posts
    3k Views
    girishG
    [7.1.0] Add cloudron sync push and cloudron sync pull subcommands Merge all binaries into single cloudron command
  • 2 Votes
    16 Posts
    5k Views
    LanhildL
    @girish mostly private custom apps. Though, I can see this becoming useful for some apps that manage authentication or background jobs by using a different database from runtime. Apps with testing/lab environments also benefit from multiple databases
  • More email notification triggers

    Feature Requests
    3
    1
    3 Votes
    3 Posts
    24 Views
    LanhildL
    @girish great question. I think an email aggregating updates per app would be fitting
  • Update on community packages

    App Packaging & Development
    16
    3
    14 Votes
    16 Posts
    551 Views
    girishG
    @timconsidine said: upload CloudronVersions.json to static hosting I think if the packaging code is public, it makes much sense to keep it in version control itself. If packaging code is private, you can upload it to surfer. In the case latter case, I would just have 1 surfer instance for all the apps that I would publish. Cloudron CLI help typo ? This is quirk of commander. Which incidentally, I just fixed yesterday - https://git.cloudron.io/platform/cloudron-cli/-/commit/a926a848400de22ddaae30f2139e0556e9461f80
  • Looking for an App?

    Community Apps
    25
    4 Votes
    25 Posts
    673 Views
    S
    @murgero Just wanted to say thank you, whatever you end up working on.
  • 0 Votes
    5 Posts
    2k Views
    S
    Stupid question but when using this does a copy of a user's joplin nots remain on the server or do notes just pass through? My understanding is that webdav files can grow pretty big
  • Fluxer.app

    App Wishlist
    3
    6 Votes
    3 Posts
    299 Views
    S
    @stalecontext very cool. How are you liking it apart from the sticks and glue?
  • Implement a Down for Maintenance screen

    Feature Requests
    17
    10 Votes
    17 Posts
    3k Views
    jdaviescoatesJ
    Something else I'd like to be able to easily do as part of this is to email every user and mailbox on the server letting them know about upcoming maintenance.
  • 4 Votes
    8 Posts
    401 Views
    jdaviescoatesJ
    @nebulon it's better than it was, but still not as good as it used to be pre v9. I'm in the middle of a server migration. For some reason one of my Volumes on the new server didn't mount properly and so all the apps that were using it weren't running. I filtered by Not responding. Clicked on configure on one. Then repair. That worked. Now I want to get back to the list of Not responding apps. If I click on My Apps they are no longer filtered. I can click the browser Back button, but I have to click it twice (more if I've looked elsewhere in the app config) to get back to where I was. I used to just be able to click on <- Back to My Apps and go immediately there. That was easier and better. The only downside was it only worked for the drop-down filters. Hitting the back button multiple times on 9.1 works with search based filters which is good, but I still want to be able to get back there with one click (and tbh to not have to use the browser back button too).
  • Incoming Email: cannot open mailbox

    Discourse
    2
    3
    1 Votes
    2 Posts
    7 Views
    jamesJ
    Hello @phneutre Where does the 9595 port come from? Cloudron uses port 995 for pop3 according to https://docs.cloudron.io/email#pop3
  • redis not starting (after update to 9.1.3?)

    Unsolved Support redis
    2
    0 Votes
    2 Posts
    19 Views
    jamesJ
    Hello @admo Please write a mail to support@cloudron.io and enable remote support, see https://docs.cloudron.io/support so wen can have a look.
  • Transfer OIDC user to local user

    Nextcloud
    2
    1 Votes
    2 Posts
    17 Views
    jamesJ
    Hello @david-0 @David-0 said: Is that even possible? No and maybe yes. Let me be blunt. Nextcloud does not make it easy for you to switch users from one provider to another. There is: https://apps.nextcloud.com/apps/user_migration but I doubt it does what you need. I have done this once but for LDAP to local user and did write down the steps I took. So this might work the same way for OIDC users, but the SQL queries need to be altered acordingly. Nextcloud LDAP to Local User Migration Yes, it is possible, but each user must then be assigned a password. This can be done manually or scripted. Post: https://help.nextcloud.com/t/import-ldap-users-get-rid-of-ldap/56629/11 commands used: Enable Maintenance mode sudo -u www-data php -f /app/code/occ maintenance:mode --on Users that will see a change of login id after the process SELECT * FROM oc_ldap_user_mapping WHERE owncloud_name != directory_uuid; Name clashes between normal and LDAP users. SELECT uid FROM oc_users, oc_ldap_user_mapping WHERE owncloud_name=uid; Name clashes between normal and LDAP groups SELECT gid FROM oc_groups, oc_ldap_group_mapping WHERE gid = owncloud_name; Create one normal user per LDAP user. INSERT INTO oc_users (uid, uid_lower) SELECT owncloud_name, owncloud_name FROM oc_ldap_user_mapping; Create on normal group per LDAP group. INSERT INTO oc_groups (gid) SELECT owncloud_name FROM oc_ldap_group_mapping; Disable the user_ldap app sudo -u www-data php -f /app/code/occ app:disable user_ldap Remove LDAP user bindings. DELETE FROM oc_ldap_user_mapping; Remove LDAP group bindings DELETE FROM oc_ldap_group_mapping; Remove LDAP group memberships DELETE FROM oc_ldap_group_membership; Disable Maintenance mode sudo -u www-data php -f /app/code/occ maintenance:mode --off
  • 3 Votes
    4 Posts
    39 Views
    jamesJ
    Hello @aaaaargzombies @aaaaargZombies said: TLDR I'm on version 9.0.17 and should try upgrading. Yes, you should update to Cloudron 9.1.3 for cloudron install to work without the need to build and push the image before installing.
  • 7 Votes
    14 Posts
    507 Views
    jamesJ
    Hello @themeerkat I have added your package to the list: https://forum.cloudron.io/topic/15172/community-apps
  • Community Apps

    Pinned Locked Community Apps
    6
    10 Votes
    6 Posts
    263 Views
    jamesJ
    HeCAPTe Detail Link / Info Wishlist topic https://forum.cloudron.io/post/117208 Author @themeerkat Repository codeberg.org/TheMeerkat/HeCAPTe Install CloudronVersions.json If you have questions or issues about this community app, please open a separate topic in the @community-apps category and link to this reply.
  • Bridges - impossible to edit?

    RSS-Bridge
    5
    0 Votes
    5 Posts
    2k Views
    O
    Reopening this. I suggested this in the community app topic here. @robi suggested this may now be possible to address. My suggestion was this: I'd love to see RSSBridge packaged in a way that you could update individual bridges directly from their repo. The official Cloudron app has the bridges in a read only folder. Lots of bridges are updated constantly, while the main app seems to be working without much problems. So as a consequence we don't get the fixed bridges on Cloudron, leading to more and more broken bridges, but with the app itself working as it should.
  • Warning: Connection Reset Issue in [4.9.0] which is n8n 2.10.2

    N8N
    6
    1 Votes
    6 Posts
    203 Views
    U
    @girish @Joseph n8n team are claiming the issue could be with changes made by Cloudron between 2.9.4 and above. Can you guys look into this? There are multiple people claiming that sending binaries via multi-part-forms breaks after upgrading from 2.9.4 - but I don't know if they're using Cloudron. Here's an example of someone getting the same error sending a multi-part form using the Open AI file upload: https://github.com/n8n-io/n8n/issues/26777 Other references to connection issues when uploading files: https://github.com/n8n-io/n8n/issues/26746 https://github.com/n8n-io/n8n/issues/26606 https://github.com/n8n-io/n8n/issues/25567
  • CalAmp/ThinxNet device – UDP support for port 5082?

    Traccar
    7
    1 Votes
    7 Posts
    45 Views
    robiR
    It sounds like this app could use a reverse proxy with a user editable configuration so the routes and ports can be added manually.
  • Disable Default Admin or Setup 2FA

    Solved Ctfreak
    12
    0 Votes
    12 Posts
    2k Views
    robiR
    @jypelle this is possible if the package is adjusted to have the config file available in /app/data and a script to restart/reload the relevant service.