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. App Wishlist
  3. Owncast – An open-source, self-hosted live streaming server

Owncast – An open-source, self-hosted live streaming server

Scheduled Pinned Locked Moved Solved App Wishlist
46 Posts 11 Posters 8.1k Views 12 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.
  • ? A Former User

    @loudlemur I absolutely could. I had a package but am thinking of re-doing it to get off of twitch (I hate using anything Jeffery Bezos makes money from). My time is very much stretched now between work, life, and freelance so I will be a "i'll get to it when I get to it" situation. Of course, if anyone else wants to go for it, go for it 🙂

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

    @atridad do you know where your package code is currently ?

    doodlemania2D 1 Reply Last reply
    1
    • girishG girish

      @atridad do you know where your package code is currently ?

      doodlemania2D Offline
      doodlemania2D Offline
      doodlemania2
      App Dev
      wrote on last edited by
      #29

      @girish i have it on my server - want me to upload it to git.cloudron?

      girishG 1 Reply Last reply
      3
      • doodlemania2D doodlemania2

        @girish i have it on my server - want me to upload it to git.cloudron?

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

        @doodlemania2 yes, please!

        L doodlemania2D 2 Replies Last reply
        2
        • girishG girish

          @doodlemania2 yes, please!

          L Offline
          L Offline
          LoudLemur
          wrote on last edited by LoudLemur
          #31

          @girish @doodlemania2 Currently, there is a "livestream to (yuch!) youtube" tool available in jitsi-meet. Hopefully, the Jitsi team will support Free livestreaming options like Owncast as an option soon. It would be wonderful to be able to run Owncast and livestream to it from jitsi-meet.

          1 Reply Last reply
          4
          • girishG girish

            @doodlemania2 yes, please!

            doodlemania2D Offline
            doodlemania2D Offline
            doodlemania2
            App Dev
            wrote on last edited by
            #32

            @girish https://git.cloudron.io/doodlemania2/owncast
            not my work, I just updated it to 0.0.11 recently
            with thanks to the OP!

            L 1 Reply Last reply
            3
            • doodlemania2D doodlemania2

              @girish https://git.cloudron.io/doodlemania2/owncast
              not my work, I just updated it to 0.0.11 recently
              with thanks to the OP!

              L Offline
              L Offline
              LoudLemur
              wrote on last edited by
              #33

              @doodlemania2 Wow! Where is the procedure explained for using an unofficial application on Cloudron? Is there a video or something like that? I would like to try this for Odoo too.

              timconsidineT 1 Reply Last reply
              0
              • L LoudLemur

                @doodlemania2 Wow! Where is the procedure explained for using an unofficial application on Cloudron? Is there a video or something like that? I would like to try this for Odoo too.

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

                @LoudLemur do you mean app packaging ?
                https://docs.cloudron.io/custom-apps/tutorial/?support_view

                or installing a custom app already packaged ?

                or something else that I didn't understand (sorry) ?

                L 1 Reply Last reply
                0
                • timconsidineT timconsidine

                  @LoudLemur do you mean app packaging ?
                  https://docs.cloudron.io/custom-apps/tutorial/?support_view

                  or installing a custom app already packaged ?

                  or something else that I didn't understand (sorry) ?

                  L Offline
                  L Offline
                  LoudLemur
                  wrote on last edited by
                  #35

                  @timconsidine Hi! I meant something else:

                  I have a Cloudron running.
                  It supports the usual official applications.
                  I would like to run an application on my cloudron which is not officially supported yet. For example, this one:
                  https://git.cloudron.io/doodlemania2/owncast

                  What would I do? Go into my Cloudron dashboard and ... Settings.. Private Docker Registry... activate... Docker Registry Provider... etc then what?

                  timconsidineT 1 Reply Last reply
                  0
                  • L LoudLemur

                    @timconsidine Hi! I meant something else:

                    I have a Cloudron running.
                    It supports the usual official applications.
                    I would like to run an application on my cloudron which is not officially supported yet. For example, this one:
                    https://git.cloudron.io/doodlemania2/owncast

                    What would I do? Go into my Cloudron dashboard and ... Settings.. Private Docker Registry... activate... Docker Registry Provider... etc then what?

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

                    @LoudLemur so I think this comes under "installing a custom app already packaged"

                    command line / terminal usage :

                    1. download the contents of the app package you want and extract to its own directory/folder
                    2. change into that folder
                    3. make sure you have cloudron CLI installed
                    4. make sure you have Docker Desktop installed and running
                    5. make sure you have a docker repo (seems you do from your answer)
                    6. at command line :
                      docker build -t <your_repo_name>/<app_name>:<app tag> .
                      you should know the first 2 and you can make up anything for the tag (or even omit it)
                      remember the trailing full stop .
                    7. at command line :
                      docker push <your_repo_name>/<app_name>:<app tag>
                    8. at command line :
                      cloudron install --image <your_repo_name>/<app_name>:<app tag>
                    9. you will be prompted for location : e.g. app.domain.tld

                    If packaging was good and you have docker and cloudron cli installed, and you downloaded the source directly, this should go smoothly !

                    doodlemania2D 1 Reply Last reply
                    5
                    • timconsidineT timconsidine

                      @LoudLemur so I think this comes under "installing a custom app already packaged"

                      command line / terminal usage :

                      1. download the contents of the app package you want and extract to its own directory/folder
                      2. change into that folder
                      3. make sure you have cloudron CLI installed
                      4. make sure you have Docker Desktop installed and running
                      5. make sure you have a docker repo (seems you do from your answer)
                      6. at command line :
                        docker build -t <your_repo_name>/<app_name>:<app tag> .
                        you should know the first 2 and you can make up anything for the tag (or even omit it)
                        remember the trailing full stop .
                      7. at command line :
                        docker push <your_repo_name>/<app_name>:<app tag>
                      8. at command line :
                        cloudron install --image <your_repo_name>/<app_name>:<app tag>
                      9. you will be prompted for location : e.g. app.domain.tld

                      If packaging was good and you have docker and cloudron cli installed, and you downloaded the source directly, this should go smoothly !

                      doodlemania2D Offline
                      doodlemania2D Offline
                      doodlemania2
                      App Dev
                      wrote on last edited by
                      #37

                      @timconsidine yeah what Tim said 🙂

                      luckowL 1 Reply Last reply
                      1
                      • doodlemania2D doodlemania2

                        @timconsidine yeah what Tim said 🙂

                        luckowL Offline
                        luckowL Offline
                        luckow
                        translator
                        wrote on last edited by
                        #38

                        @doodlemania2
                        yesterday i tried the app package. two quick questions:

                        • is it a typo? manifest defines port 1937 the app is preconfigured on port 1935.
                        • did you install the app on a Cloudron 7.1.x with (or without ipv6)? I had no way to connect to the instance via obs. Tried it with different ports and configurations.

                        Pronouns: he/him | Primary language: German

                        doodlemania2D 1 Reply Last reply
                        2
                        • luckowL luckow

                          @doodlemania2
                          yesterday i tried the app package. two quick questions:

                          • is it a typo? manifest defines port 1937 the app is preconfigured on port 1935.
                          • did you install the app on a Cloudron 7.1.x with (or without ipv6)? I had no way to connect to the instance via obs. Tried it with different ports and configurations.
                          doodlemania2D Offline
                          doodlemania2D Offline
                          doodlemania2
                          App Dev
                          wrote on last edited by
                          #39

                          @luckow I'm on 7.1
                          Yes, that's a typo, we should change that! Probably why your connection from OBS isn't working

                          ? 1 Reply Last reply
                          2
                          • doodlemania2D doodlemania2

                            @luckow I'm on 7.1
                            Yes, that's a typo, we should change that! Probably why your connection from OBS isn't working

                            ? Offline
                            ? Offline
                            A Former User
                            wrote on last edited by
                            #40

                            @doodlemania2 you know I didn’t see you had a copy of my old repo at all. I made a new one on my GitHub lol. It’s not much different tbh.

                            doodlemania2D 1 Reply Last reply
                            0
                            • ? A Former User

                              @doodlemania2 you know I didn’t see you had a copy of my old repo at all. I made a new one on my GitHub lol. It’s not much different tbh.

                              doodlemania2D Offline
                              doodlemania2D Offline
                              doodlemania2
                              App Dev
                              wrote on last edited by
                              #41

                              @atridad can you send link and i'll update and push with credit!

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

                                This looks like quite an easy package! I am just cleaning this up at https://git.cloudron.io/cloudron/owncast-app, will publish tomorrow.

                                jdaviescoatesJ 1 Reply Last reply
                                4
                                • girishG girish

                                  This looks like quite an easy package! I am just cleaning this up at https://git.cloudron.io/cloudron/owncast-app, will publish tomorrow.

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

                                  @girish excellent! You're on a roll! Keep going 🙂 💪

                                  I use Cloudron with Gandi & Hetzner

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

                                    I have published this as unstable now.

                                    ? 1 Reply Last reply
                                    4
                                    • girishG girish marked this topic as a question on
                                    • girishG girish has marked this topic as solved on
                                    • girishG girish

                                      I have published this as unstable now.

                                      ? Offline
                                      ? Offline
                                      A Former User
                                      wrote on last edited by A Former User
                                      #45

                                      @girish Nice! Small thing but could you remove my email from the manifest? That email in particular is old and the domain no longer exists. That or change it to atridad@icloud.com. Honestly not sure who should be there for the official package.

                                      girishG 1 Reply Last reply
                                      0
                                      • ? A Former User

                                        @girish Nice! Small thing but could you remove my email from the manifest? That email in particular is old and the domain no longer exists. That or change it to atridad@icloud.com. Honestly not sure who should be there for the official package.

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

                                        @atridad Ah, will do. That field is mostly unused anyway.

                                        1 Reply Last reply
                                        0
                                        • girishG girish locked this topic 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