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
  • 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 | Demo | Docs | Install
  1. Cloudron Forum
  2. Dolibarr
  3. Dolibarr : app is currently not responding

Dolibarr : app is currently not responding

Scheduled Pinned Locked Moved Solved Dolibarr
14 Posts 6 Posters 2.8k Views 5 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.
  • BrutalBirdieB BrutalBirdie

    Leaving a ping for @staff.

    BrutalBirdieB Online
    BrutalBirdieB Online
    BrutalBirdie
    Partner
    wrote on last edited by
    #4

    wtf how did this ever work?

    https://git.cloudron.io/cloudron/dolibarr-app/-/blob/master/Dockerfile#L43

    COPY dolibarr/conf.php.ldap /app/data/conf/conf.php.ldap
    

    😕
    When the docker image is build there is no /app/data/. . . at least it should not be there.

    @nebulon was there a change between 7.2.0 when build docker images included /app/data stuff that would have been synced docker image /app/data to appdata/{APPID}/data/?

    Digging more... tomorrow.
    need sleep.

    Like my work? Consider donating a drink. Cheers!

    nebulonN robiR 2 Replies Last reply
    1
    • BrutalBirdieB BrutalBirdie

      wtf how did this ever work?

      https://git.cloudron.io/cloudron/dolibarr-app/-/blob/master/Dockerfile#L43

      COPY dolibarr/conf.php.ldap /app/data/conf/conf.php.ldap
      

      😕
      When the docker image is build there is no /app/data/. . . at least it should not be there.

      @nebulon was there a change between 7.2.0 when build docker images included /app/data stuff that would have been synced docker image /app/data to appdata/{APPID}/data/?

      Digging more... tomorrow.
      need sleep.

      nebulonN Offline
      nebulonN Offline
      nebulon
      Staff
      wrote on last edited by
      #5

      @BrutalBirdie I agree this looks very strange and should not do what the line implies as /app/data/ will be mounted and thus the files COPYed here will not be visible. Maybe just some copy and paste error from another Dockerfile then.

      1 Reply Last reply
      0
      • BrutalBirdieB BrutalBirdie

        wtf how did this ever work?

        https://git.cloudron.io/cloudron/dolibarr-app/-/blob/master/Dockerfile#L43

        COPY dolibarr/conf.php.ldap /app/data/conf/conf.php.ldap
        

        😕
        When the docker image is build there is no /app/data/. . . at least it should not be there.

        @nebulon was there a change between 7.2.0 when build docker images included /app/data stuff that would have been synced docker image /app/data to appdata/{APPID}/data/?

        Digging more... tomorrow.
        need sleep.

        robiR Offline
        robiR Offline
        robi
        wrote on last edited by
        #6

        @BrutalBirdie seems that should be moved to the start.sh if it's desired as such and not already available as per the packaging.

        Conscious tech

        nebulonN 1 Reply Last reply
        0
        • robiR robi

          @BrutalBirdie seems that should be moved to the start.sh if it's desired as such and not already available as per the packaging.

          nebulonN Offline
          nebulonN Offline
          nebulon
          Staff
          wrote on last edited by
          #7

          @robi I've taken a further look at the app package and I am also a bit puzzled as how this ever worked in the first place to be honest. We have rework this quite a bit it seems.

          robiR girishG 2 Replies Last reply
          1
          • nebulonN nebulon

            @robi I've taken a further look at the app package and I am also a bit puzzled as how this ever worked in the first place to be honest. We have rework this quite a bit it seems.

            robiR Offline
            robiR Offline
            robi
            wrote on last edited by
            #8

            @nebulon I'm not sure it worked at all, but was a superfluous step that didn't affect the outcome.

            I could be wrong as I don't know what happens when the docker image layer gets added and the directory already exists and has files. Do they simply merge? Or is it overwritten?

            Conscious tech

            nebulonN 1 Reply Last reply
            0
            • robiR robi

              @nebulon I'm not sure it worked at all, but was a superfluous step that didn't affect the outcome.

              I could be wrong as I don't know what happens when the docker image layer gets added and the directory already exists and has files. Do they simply merge? Or is it overwritten?

              nebulonN Offline
              nebulonN Offline
              nebulon
              Staff
              wrote on last edited by
              #9

              @robi no mergin happens, after the mount, the original files in that place are not accessible anymore. Either way I am now reworking that package to have a fresh start.

              robiR 1 Reply Last reply
              2
              • nebulonN nebulon

                @robi no mergin happens, after the mount, the original files in that place are not accessible anymore. Either way I am now reworking that package to have a fresh start.

                robiR Offline
                robiR Offline
                robi
                wrote on last edited by
                #10

                @nebulon yes, thought so, the destination folder gets suppressed with the overlay.

                Conscious tech

                1 Reply Last reply
                0
                • nebulonN nebulon

                  @robi I've taken a further look at the app package and I am also a bit puzzled as how this ever worked in the first place to be honest. We have rework this quite a bit it seems.

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

                  @nebulon said in Dolibarr : app is currently not responding:

                  @robi I've taken a further look at the app package and I am also a bit puzzled as how this ever worked in the first place to be honest. We have rework this quite a bit it seems.

                  This is because in previous versions, we used Docker volumes for local storage. Docker volume has a feature that things get copied over from a volume on first run. In Cloudron 7.2, we made localstorage a bind mount which does not have this feature.

                  I mentioned this in passing here - https://forum.cloudron.io/topic/6409/dashy/16

                  1 Reply Last reply
                  5
                  • Animus83A Offline
                    Animus83A Offline
                    Animus83
                    wrote on last edited by
                    #12

                    8cac2a1d-e628-4907-930d-229782897f84-image.png

                    domain: dolibarr.wentzelweb.com

                    a98ed270-54c5-4140-a4f4-b6a8460c7a3a-image.png

                    nebulonN 1 Reply Last reply
                    0
                    • Animus83A Animus83

                      8cac2a1d-e628-4907-930d-229782897f84-image.png

                      domain: dolibarr.wentzelweb.com

                      a98ed270-54c5-4140-a4f4-b6a8460c7a3a-image.png

                      nebulonN Offline
                      nebulonN Offline
                      nebulon
                      Staff
                      wrote on last edited by
                      #13

                      @Animus83 can you give more information, like which Dolibar app package version is this? Did this happen after an update or a fresh installation?

                      1 Reply Last reply
                      0
                      • nebulonN nebulon marked this topic as a question on
                      • nebulonN Offline
                        nebulonN Offline
                        nebulon
                        Staff
                        wrote on last edited by
                        #14

                        This should be resolved with the latest version.

                        1 Reply Last reply
                        0
                        • girishG girish has marked this topic as solved on
                        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