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. Bitwarden - Self-hosted password manager

Bitwarden - Self-hosted password manager

Scheduled Pinned Locked Moved Solved App Wishlist
218 Posts 20 Posters 151.4k Views 29 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.
  • iamthefijI Offline
    iamthefijI Offline
    iamthefij
    App Dev
    wrote on last edited by
    #91

    On another note... There is no Docker image built for MySQL support yet, so I'm writing a new Dockerfile that uses a multi stage built to compile Bitwarden_rs with MySQL support.

    fbartelsF 1 Reply Last reply
    0
    • iamthefijI iamthefij

      On another note... There is no Docker image built for MySQL support yet, so I'm writing a new Dockerfile that uses a multi stage built to compile Bitwarden_rs with MySQL support.

      fbartelsF Offline
      fbartelsF Offline
      fbartels
      App Dev
      wrote on last edited by
      #92

      @iamthefij there is one already at https://github.com/dani-garcia/bitwarden_rs/tree/master/docker/amd64/mysql

      iamthefijI 1 Reply Last reply
      0
      • fbartelsF fbartels

        @iamthefij there is one already at https://github.com/dani-garcia/bitwarden_rs/tree/master/docker/amd64/mysql

        iamthefijI Offline
        iamthefijI Offline
        iamthefij
        App Dev
        wrote on last edited by
        #93

        @fbartels yes. But not an image on Docker Hub that I can pull from. Instead I'm building a multistage build that looks a lot like that Dockerfile but with the an LDAP layer and the Cloudron layer.

        fbartelsF 1 Reply Last reply
        0
        • iamthefijI iamthefij

          @fbartels yes. But not an image on Docker Hub that I can pull from. Instead I'm building a multistage build that looks a lot like that Dockerfile but with the an LDAP layer and the Cloudron layer.

          fbartelsF Offline
          fbartelsF Offline
          fbartels
          App Dev
          wrote on last edited by
          #94

          @iamthefij it's here https://hub.docker.com/r/bitwardenrs/server-mysql

          iamthefijI 1 Reply Last reply
          0
          • fbartelsF fbartels

            @iamthefij it's here https://hub.docker.com/r/bitwardenrs/server-mysql

            iamthefijI Offline
            iamthefijI Offline
            iamthefij
            App Dev
            wrote on last edited by iamthefij
            #95

            @fbartels well, I guess I didn't look hard enough! (Edit: Looks like the 1.10.0 release was only 2 hours ago. No wonder I missed it. šŸ™‚ ) It would be good to roll those all into one image with multiple tags, but I can chat with them about that on Matrix.

            Anyway, adding the multi-stage build wasn't terribly hard and cuts out an extra dependency on that build pipeline, which is probably a good thing for a security sensitive project.

            Latest on my master is now fully operational. Working email, working ldap sync, working MySQL.

            BIG WARNING! There is no migration path from SQLite to MySQL. You should export your vault to CSV or something and then re-import it after migration.

            https://git.cloudron.io/iamthefij/bitwardenrs-app

            necrevistonnezrN 1 Reply Last reply
            1
            • iamthefijI iamthefij

              @fbartels well, I guess I didn't look hard enough! (Edit: Looks like the 1.10.0 release was only 2 hours ago. No wonder I missed it. šŸ™‚ ) It would be good to roll those all into one image with multiple tags, but I can chat with them about that on Matrix.

              Anyway, adding the multi-stage build wasn't terribly hard and cuts out an extra dependency on that build pipeline, which is probably a good thing for a security sensitive project.

              Latest on my master is now fully operational. Working email, working ldap sync, working MySQL.

              BIG WARNING! There is no migration path from SQLite to MySQL. You should export your vault to CSV or something and then re-import it after migration.

              https://git.cloudron.io/iamthefij/bitwardenrs-app

              necrevistonnezrN Online
              necrevistonnezrN Online
              necrevistonnezr
              wrote on last edited by necrevistonnezr
              #96

              @iamthefij Maybe the migration scripts by the author work that are mentioned here?

              * Start bitwarden_rs with and empty mysql database, so diesel can run migrations and set up the schema properly. Do not do anything else.
              * Stop bitwarden_rs.
              * Dump your existing sqlite database: sqlite3 db.sqlite3 .dump > sqlitedump.sql
              * Drop schema creation and diesel metadata from your dump, leaving only your actual data: grep "INSERT INTO" sqlitedump.sql | grep -v "__diesel_schema_migrations" > mysqldump.sql
              
              * Load your MySQL dump: mysql -u bitwarden -p bitwarden < mysqldump.sql
              
              * Start bitwarden_rs
              ˋˋˋ
              iamthefijI 1 Reply Last reply
              0
              • necrevistonnezrN necrevistonnezr

                @iamthefij Maybe the migration scripts by the author work that are mentioned here?

                * Start bitwarden_rs with and empty mysql database, so diesel can run migrations and set up the schema properly. Do not do anything else.
                * Stop bitwarden_rs.
                * Dump your existing sqlite database: sqlite3 db.sqlite3 .dump > sqlitedump.sql
                * Drop schema creation and diesel metadata from your dump, leaving only your actual data: grep "INSERT INTO" sqlitedump.sql | grep -v "__diesel_schema_migrations" > mysqldump.sql
                
                * Load your MySQL dump: mysql -u bitwarden -p bitwarden < mysqldump.sql
                
                * Start bitwarden_rs
                ˋˋˋ
                iamthefijI Offline
                iamthefijI Offline
                iamthefij
                App Dev
                wrote on last edited by
                #97

                @necrevistonnezr I saw that. Yea, it's possible to do, but it's not something that I think is worth automating given that it could be a bit finicky.

                If someone wants to do this, they are welcome to try using the console.

                I'm planning to just export and re-import myself.

                necrevistonnezrN 1 Reply Last reply
                0
                • iamthefijI iamthefij

                  @necrevistonnezr I saw that. Yea, it's possible to do, but it's not something that I think is worth automating given that it could be a bit finicky.

                  If someone wants to do this, they are welcome to try using the console.

                  I'm planning to just export and re-import myself.

                  necrevistonnezrN Online
                  necrevistonnezrN Online
                  necrevistonnezr
                  wrote on last edited by
                  #98

                  @iamthefij but import / export does not work for attachments, right? Or are these somehow migrateable?

                  iamthefijI 1 Reply Last reply
                  0
                  • necrevistonnezrN necrevistonnezr

                    @iamthefij but import / export does not work for attachments, right? Or are these somehow migrateable?

                    iamthefijI Offline
                    iamthefijI Offline
                    iamthefij
                    App Dev
                    wrote on last edited by
                    #99

                    @necrevistonnezr hmm. I've got no clue. I don't have any attachments and only use Bitwarden to manage passwords.

                    1 Reply Last reply
                    0
                    • L Offline
                      L Offline
                      lukaszj
                      wrote on last edited by
                      #100

                      @iamthefij I've used your build with fixed emails and ldap and it installed well however I'm not sure how to get in.

                      Bitwarden asks for email so I supply email corresponding to my Cloudron login and Cloudron's password but it says username or password is invalid. Can you suggest something?

                      iamthefijI 1 Reply Last reply
                      0
                      • L lukaszj

                        @iamthefij I've used your build with fixed emails and ldap and it installed well however I'm not sure how to get in.

                        Bitwarden asks for email so I supply email corresponding to my Cloudron login and Cloudron's password but it says username or password is invalid. Can you suggest something?

                        iamthefijI Offline
                        iamthefijI Offline
                        iamthefij
                        App Dev
                        wrote on last edited by
                        #101

                        @lukaszj you should receive an invite email within a few min of the sync task running. I think it runs every 5 min. You'll need to click the link in that email to create your account.

                        1 Reply Last reply
                        0
                        • jimcavoliJ Offline
                          jimcavoliJ Offline
                          jimcavoli
                          App Dev
                          wrote on last edited by
                          #102

                          With all the activity on this thread, is it likely that Bitwarden will see release in the App Store any time soon? Even as an "unstable" package for easier trial by others?

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

                            @jimcavoli We will take this up next week since we are working on getting 4.2 out this week. Will follow up with @iamthefij on what the status is.

                            iamthefijI 1 Reply Last reply
                            1
                            • girishG girish

                              @jimcavoli We will take this up next week since we are working on getting 4.2 out this week. Will follow up with @iamthefij on what the status is.

                              iamthefijI Offline
                              iamthefijI Offline
                              iamthefij
                              App Dev
                              wrote on last edited by
                              #104

                              @girish it should be good to go. My branch is working with MySQL and LDAP.

                              I've got two working Dockerfiles. One that compiles the entire project and another that just pulls the binary from the published images on Docker Hub. End result is the same.

                              1 Reply Last reply
                              1
                              • L Offline
                                L Offline
                                lukaszj
                                wrote on last edited by
                                #105

                                Hello @girish is there any progress with releasing Bitwarden to App Store? Thanks!

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

                                  Unfortunately, not this week. The 4.2 release hit some hiccups. Good news is that we are rolling out 4.2 as we speak. So, we should get to this next week.

                                  L iamthefijI 2 Replies Last reply
                                  3
                                  • girishG girish

                                    Unfortunately, not this week. The 4.2 release hit some hiccups. Good news is that we are rolling out 4.2 as we speak. So, we should get to this next week.

                                    L Offline
                                    L Offline
                                    lukaszj
                                    wrote on last edited by
                                    #107

                                    @girish Great, can't wait. Fingers crossed!

                                    1 Reply Last reply
                                    0
                                    • girishG girish

                                      Unfortunately, not this week. The 4.2 release hit some hiccups. Good news is that we are rolling out 4.2 as we speak. So, we should get to this next week.

                                      iamthefijI Offline
                                      iamthefijI Offline
                                      iamthefij
                                      App Dev
                                      wrote on last edited by
                                      #108

                                      @girish great to hear! Let me know if there is anything I can do to help.

                                      1 Reply Last reply
                                      0
                                      • necrevistonnezrN Online
                                        necrevistonnezrN Online
                                        necrevistonnezr
                                        wrote on last edited by
                                        #109

                                        Again, there's trouble with cloudron cli. I tried to login but it gives me the following errors:

                                        cloudron login --allow-selfsigned
                                        Cloudron Admin Domain: my.domain.com
                                        ERROR (node:51749) Warning: Setting the NODE_TLS_REJECT_UNAUTHORIZED environment variable to '0' makes TLS connections and HTTPS requests insecure by disabling certificate verification. [ internal/process/warning.js:27:3 ]
                                        ERROR Cloudron my.domain.com not found.
                                        Try providing the admin location, probably my.my.domain.com [ /Users/user/.nvm/versions/node/v12.7.0/lib/node_modules/cloudron/src/helper.js:71:29 ]
                                        

                                        What am I doing wrong?

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

                                          @necrevistonnezr You almost never have to use --allow-selfsigned Does my.domain.com have the correct cert?

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