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


Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • Bookmarks
  • Search
Skins
  • Light
  • Brite
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Brand Logo

Cloudron Forum

Apps - Status | Demo | Docs | Install
  1. Cloudron Forum
  2. App Wishlist
  3. Dashy

Dashy

Scheduled Pinned Locked Moved App Wishlist
19 Posts 7 Posters 7.6k Views 6 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • T thetomester13

    @timconsidine hmm from a fresh install I'm seeing the same thing. Some quick research didn't turn up much, wondering if @girish or @nebulon have seen this error before or know where I should start looking?

    timconsidineT Offline
    timconsidineT Offline
    timconsidine
    App Dev
    wrote on last edited by timconsidine
    #10

    @thetomester13 I have since "hacked" the Dockerfile and think the problem is line 25 where the WORKDIR references the no-longer-present directory (hack was to remove the dashy from /app/code)

    I've got it past that error but it fails healthcheck as the sed command in start.sh fails not finding /app/data/dashy/.env (from memory, don't have the log any more). Not been able to work out the solution to that.

    Indie app dev, scratching my itches, lover of Cloudron PaaS, communityapps.appx.uk

    T 1 Reply Last reply
    1
    • timconsidineT timconsidine

      @thetomester13 I have since "hacked" the Dockerfile and think the problem is line 25 where the WORKDIR references the no-longer-present directory (hack was to remove the dashy from /app/code)

      I've got it past that error but it fails healthcheck as the sed command in start.sh fails not finding /app/data/dashy/.env (from memory, don't have the log any more). Not been able to work out the solution to that.

      T Offline
      T Offline
      thetomester13
      App Dev
      wrote on last edited by
      #11

      @timconsidine thanks for that! I'm seeing the same thing you are. Looks like this app isn't as done as I thought it was... 😅 I'll go back to the drawing board on this and post back when I've made some progress!

      1 Reply Last reply
      1
      • T thetomester13

        @timconsidine hmm from a fresh install I'm seeing the same thing. Some quick research didn't turn up much, wondering if @girish or @nebulon have seen this error before or know where I should start looking?

        girishG Offline
        girishG Offline
        girish
        Staff
        wrote on last edited by
        #12

        @thetomester13 said in Dashy:

        Some quick research didn't turn up much, wondering if @girish or @nebulon have seen this error before or know where I should start looking?

        Just saw this now, do you need any help ?

        T 1 Reply Last reply
        1
        • girishG Offline
          girishG Offline
          girish
          Staff
          wrote on last edited by
          #13

          The comment at https://git.cloudron.io/thetomester13/dashy-app/-/blob/master/Dockerfile#L17 says "Move /dashy to /app/data so we can write to it, and symlink it to /app/code" . Why is that so?

          1 Reply Last reply
          0
          • girishG girish

            @thetomester13 said in Dashy:

            Some quick research didn't turn up much, wondering if @girish or @nebulon have seen this error before or know where I should start looking?

            Just saw this now, do you need any help ?

            T Offline
            T Offline
            thetomester13
            App Dev
            wrote on last edited by thetomester13
            #14

            @girish thanks for the offer @girish ! I think I'm alright for now. Will try and get back to this soon when I have a free few hours to play around with it. This app isn't super high on the Cloudron priority list.

            @girish said in Dashy:

            The comment at https://git.cloudron.io/thetomester13/dashy-app/-/blob/master/Dockerfile#L17 says "Move /dashy to /app/data so we can write to it, and symlink it to /app/code" . Why is that so?

            If you see my comment from Feb 14th (I really should get a life sometimes : ), Dashy needs to access to edit some files on the filesystem to update the actual dashboards. It frequently updates /public/conf.yml (as well as creating backups of conf.yml files whenever a change is made), and it rewrites the entire /dist directory after a configuration change is made. This resulted in me having to put the entire /dashy directory in /app/data. Not sure if this is the right way to go about it, but it works. This is why I moved the entire folder.

            girishG 1 Reply Last reply
            0
            • T thetomester13

              @girish thanks for the offer @girish ! I think I'm alright for now. Will try and get back to this soon when I have a free few hours to play around with it. This app isn't super high on the Cloudron priority list.

              @girish said in Dashy:

              The comment at https://git.cloudron.io/thetomester13/dashy-app/-/blob/master/Dockerfile#L17 says "Move /dashy to /app/data so we can write to it, and symlink it to /app/code" . Why is that so?

              If you see my comment from Feb 14th (I really should get a life sometimes : ), Dashy needs to access to edit some files on the filesystem to update the actual dashboards. It frequently updates /public/conf.yml (as well as creating backups of conf.yml files whenever a change is made), and it rewrites the entire /dist directory after a configuration change is made. This resulted in me having to put the entire /dashy directory in /app/data. Not sure if this is the right way to go about it, but it works. This is why I moved the entire folder.

              girishG Offline
              girishG Offline
              girish
              Staff
              wrote on last edited by
              #15

              @thetomester13 Ah ok. So, as a heads up, the "copy" to /app/data won't work anymore in 7.2.4 and beyond. This is because we stopped using docker volumes internally. The copying of files from a docker image's /app/data into runtime /app/data was a docker volumes feature. The fix is to do the copy in the start.sh

              T 1 Reply Last reply
              3
              • girishG girish

                @thetomester13 Ah ok. So, as a heads up, the "copy" to /app/data won't work anymore in 7.2.4 and beyond. This is because we stopped using docker volumes internally. The copying of files from a docker image's /app/data into runtime /app/data was a docker volumes feature. The fix is to do the copy in the start.sh

                T Offline
                T Offline
                thetomester13
                App Dev
                wrote on last edited by
                #16

                @girish ok, very good to know, thanks for the heads up!

                timconsidineT 1 Reply Last reply
                1
                • girishG girish referenced this topic on
                • marcusquinnM Offline
                  marcusquinnM Offline
                  marcusquinn
                  wrote on last edited by
                  #17

                  👍

                  Web Design & Development: https://www.evergreen.je
                  Technology & Apps: https://www.marcusquinn.com

                  1 Reply Last reply
                  3
                  • T thetomester13

                    @girish ok, very good to know, thanks for the heads up!

                    timconsidineT Offline
                    timconsidineT Offline
                    timconsidine
                    App Dev
                    wrote on last edited by
                    #18

                    @thetomester13 did you manage to resolve the copying issue ? does a custom install complete now ?

                    Indie app dev, scratching my itches, lover of Cloudron PaaS, communityapps.appx.uk

                    T 1 Reply Last reply
                    2
                    • timconsidineT timconsidine

                      @thetomester13 did you manage to resolve the copying issue ? does a custom install complete now ?

                      T Offline
                      T Offline
                      thetomester13
                      App Dev
                      wrote on last edited by
                      #19

                      @timconsidine I have not had a chance to look at and fix this just yet. Will be sure to update this thread when I do!

                      1 Reply Last reply
                      2
                      • robiR robi referenced this topic on
                      • humptydumptyH humptydumpty referenced this topic on

                      Hello! It looks like you're interested in this conversation, but you don't have an account yet.

                      Getting fed up of having to scroll through the same posts each visit? When you register for an account, you'll always come back to exactly where you were before, and choose to be notified of new replies (either via email, or push notification). You'll also be able to save bookmarks and upvote posts to show your appreciation to other community members.

                      With your input, this post could be even better 💗

                      Register Login
                      Reply
                      • Reply as topic
                      Log in to reply
                      • Oldest to Newest
                      • Newest to Oldest
                      • Most Votes


                      • Login

                      • Don't have an account? Register

                      • Login or register to search.
                      • First post
                        Last post
                      0
                      • Categories
                      • Recent
                      • Tags
                      • Popular
                      • Bookmarks
                      • Search