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. Discuss
  3. How does Cloudron work? What does it do? etc :)

How does Cloudron work? What does it do? etc :)

Scheduled Pinned Locked Moved Discuss
48 Posts 8 Posters 8.4k Views 9 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.
  • jdaviescoatesJ jdaviescoates

    @girish @robi there is clearly something very wrong with the timestamps in the original hence why we've got all these different timing!

    Anyways, here is the 295.2MB original I managed to get off Periscope (which says it's 1:16:26 when I open it with VLC):

    (well, this is taking forever to process for some reason, so will come back and add the link if it ever finishes)

    FilePizza still says processing so here it is via Surfer:
    https://files.uniteddiversity.coop/BayLISA_Cloudron.mp4 (although again, something strange about this video as Surfer wont play it when it normally does play videos - plays fine for me in VLC though)

    And here is a 147.4MB rotated version (using @nebulon's command) which is bizarrely 1:19:24

    https://transfer.uniteddiversity.coop/beef/spinach/oregano/broccoli

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

    @jdaviescoates Thanks, file.pizza delivered! I have re-uploaded to https://videos.cloudron.io/videos/watch/206fc4b7-9641-4453-8be0-67450f2574b1

    jdaviescoatesJ 2 Replies Last reply
    2
    • girishG girish

      @jdaviescoates Thanks, file.pizza delivered! I have re-uploaded to https://videos.cloudron.io/videos/watch/206fc4b7-9641-4453-8be0-67450f2574b1

      jdaviescoatesJ Offline
      jdaviescoatesJ Offline
      jdaviescoates
      wrote on last edited by
      #38

      @girish I have a small question about this video I've been meaning to ask for ages... somewhere you mention that Cloudron uses "Linux containers" - does that basically just mean Docker? or does Cloudron also use some other form of Linux containerization too? thanks!

      I use Cloudron with Gandi & Hetzner

      nebulonN girishG 2 Replies Last reply
      0
      • jdaviescoatesJ jdaviescoates

        @girish I have a small question about this video I've been meaning to ask for ages... somewhere you mention that Cloudron uses "Linux containers" - does that basically just mean Docker? or does Cloudron also use some other form of Linux containerization too? thanks!

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

        @jdaviescoates all apps and services use docker for containerization currently. When we started, we had ideas of allow this to maybe change that, as Cloudron acts as an abstraction on top of such lower-level features. In the end so far there was no real reason for supporting other containerization methods. Also it would cause mostly unnecessary extra work for little benefit, still we try to not expose containerization specifics to apps to stay portable as much as possible for the future.

        1 Reply Last reply
        3
        • jdaviescoatesJ jdaviescoates

          @girish I have a small question about this video I've been meaning to ask for ages... somewhere you mention that Cloudron uses "Linux containers" - does that basically just mean Docker? or does Cloudron also use some other form of Linux containerization too? thanks!

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

          @jdaviescoates The linux kernel has various built-in features/system calls like 'cgroups' (provides cpu/ram/resource isolation), namespaces (pid/ipc/mounts), overlay filesystem etc. These things apply to 'process'es.

          'Container' is a term and not some feature of the kernel as such. It brings all the above system calls together along with bundling/packaging aspect to help create containerized "apps". Apps can be desktop UI, web apps, daemons, anything.

          Docker is one implementation of the 'container' concept. When creating a implementation (just like how you design a language), you have to decide style/structure/format. We have this Dockerfile that explains how to put deps together, how to configure things, how to push the final build image to the cloud and pull down this image and deploy it on another server etc.

          Other implementations exist which are in various states - rocket, OpenVZ(?), LXC, snap, containerd, cri-o off my head.

          When we started, Docker was the de-facto implementation. These days there are more options and in theory we can switch to another one without affecting end users (though it's a lot of work). Also, when we started, we had no 'custom apps'. Changing the run time will break custom apps, so I think we are married to Docker until that project lives.

          robiR 1 Reply Last reply
          3
          • girishG Offline
            girishG Offline
            girish
            Staff
            wrote on last edited by
            #41

            Forgot to mention sandstom.io, which implements containers by itself and does not use docker.

            1 Reply Last reply
            0
            • girishG girish

              @jdaviescoates The linux kernel has various built-in features/system calls like 'cgroups' (provides cpu/ram/resource isolation), namespaces (pid/ipc/mounts), overlay filesystem etc. These things apply to 'process'es.

              'Container' is a term and not some feature of the kernel as such. It brings all the above system calls together along with bundling/packaging aspect to help create containerized "apps". Apps can be desktop UI, web apps, daemons, anything.

              Docker is one implementation of the 'container' concept. When creating a implementation (just like how you design a language), you have to decide style/structure/format. We have this Dockerfile that explains how to put deps together, how to configure things, how to push the final build image to the cloud and pull down this image and deploy it on another server etc.

              Other implementations exist which are in various states - rocket, OpenVZ(?), LXC, snap, containerd, cri-o off my head.

              When we started, Docker was the de-facto implementation. These days there are more options and in theory we can switch to another one without affecting end users (though it's a lot of work). Also, when we started, we had no 'custom apps'. Changing the run time will break custom apps, so I think we are married to Docker until that project lives.

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

              @girish said in How does Cloudron work? What does it do? etc 🙂:

              Changing the run time will break custom apps, so I think we are married to Docker until that project lives.

              That's not quite true.. remember Nestybox?
              Their runtime called "sysbox" is a drop in replacement for runc which docker uses by default.

              Conscious tech

              girishG 1 Reply Last reply
              0
              • robiR robi

                @girish said in How does Cloudron work? What does it do? etc 🙂:

                Changing the run time will break custom apps, so I think we are married to Docker until that project lives.

                That's not quite true.. remember Nestybox?
                Their runtime called "sysbox" is a drop in replacement for runc which docker uses by default.

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

                @robi From what I remember, sysbox was like a backend to docker, it doesn't replace docker. Unlike the other things I mentioned which will replace docker.

                robiR 1 Reply Last reply
                0
                • girishG girish

                  @robi From what I remember, sysbox was like a backend to docker, it doesn't replace docker. Unlike the other things I mentioned which will replace docker.

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

                  @girish you should take a look at it again. 😉

                  Conscious tech

                  girishG 1 Reply Last reply
                  0
                  • robiR robi

                    @girish you should take a look at it again. 😉

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

                    @robi Would be interesting to know what systemd-detect-virt prints for nestybox

                    robiR 1 Reply Last reply
                    0
                    • girishG Offline
                      girishG Offline
                      girish
                      Staff
                      wrote on last edited by
                      #46

                      I just found that https://www.freedesktop.org/software/systemd/man/systemd-detect-virt.html has quite a nice list of container and vm technologies.

                      1 Reply Last reply
                      1
                      • girishG girish

                        @robi Would be interesting to know what systemd-detect-virt prints for nestybox

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

                        @girish said in How does Cloudron work? What does it do? etc 🙂:

                        @robi Would be interesting to know what systemd-detect-virt prints for nestybox

                        That's easy to test, just change one line in the docker config or specify it on the CLI and bring up a container using sysbox, then run the tool.

                        Conscious tech

                        1 Reply Last reply
                        0
                        • girishG girish

                          @jdaviescoates Thanks, file.pizza delivered! I have re-uploaded to https://videos.cloudron.io/videos/watch/206fc4b7-9641-4453-8be0-67450f2574b1

                          jdaviescoatesJ Offline
                          jdaviescoatesJ Offline
                          jdaviescoates
                          wrote on last edited by
                          #48

                          @girish said in How does Cloudron work? What does it do? etc 🙂:

                          @jdaviescoates Thanks, file.pizza delivered! I have re-uploaded to https://videos.cloudron.io/videos/watch/206fc4b7-9641-4453-8be0-67450f2574b1

                          FYI the link to the slides given there is broken.

                          I use Cloudron with Gandi & Hetzner

                          1 Reply Last reply
                          1
                          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