How to setup docker via NAS container station gui #1088
-
Hi, I am trying to get selfhosted budibase up and running on a QNAP NAS via the Container station gui.
But I am stuck at creating the app. I see the app being created and listed in the budibase builder but on the terminal of my running docker container I see these error messages:
And when I try to deploy I get a popup:
My docker container environment variables settings are:
(not sure I need these as it is all running in 1 container...) thx! |
Beta Was this translation helpful? Give feedback.
Replies: 5 comments
-
Hi @I-Connect running the containers individually will likely not be a simple process, our documentation for getting Budibase up and running can be found here. If you follow these through to the hosting methods you'll find that we make use of docker compose to run our system, there are a few key containers that make it function correctly:
All of these images need to be networked together correctly, and we use docker compose to manage when these services start and how they are networked. Running the images individually will be quite difficult to manage, its not something we would recommend. If it is possible for you to get shell access to the NAS box then you might be able to install docker compose and run the containers that way. We have discussed the idea of a single image option although this is still up in the air, as it becomes very difficult to scale in the future; if you have any thoughts about this we'd love to hear them! |
Beta Was this translation helpful? Give feedback.
-
hi @mike12345567 thx for the quick response, clear. I searched for budibase dockers at docker hub and found the apps and worker image. Maybe it is an idea to add something to the comments to prevent others from going the same way I did. I do have shell access so I will give that a go. Regards, PS. I understand the scalability issue if you would create a single image but it would be nice just for quickly creating a testsetup... |
Beta Was this translation helpful? Give feedback.
-
Hi @I-Connect - thanks for pointing this out, I didn't think of this, I have updated the readme and description of the images on Docker hub to make this more clear. Please let me know if you run into any trouble - also if you're looking for more immediate help you can checkout our Discord! |
Beta Was this translation helpful? Give feedback.
-
small update... for the time being I installed an ubuntu container and ran the docker compose within that container. Not very scalable but good enough for testing. |
Beta Was this translation helpful? Give feedback.
-
Hi @I-Connect glad you were able to get something up and working - sadly I'm not sure there will be anyway that a single container deployment will be scalable, but at least its testable! |
Beta Was this translation helpful? Give feedback.
Hi @I-Connect running the containers individually will likely not be a simple process, our documentation for getting Budibase up and running can be found here. If you follow these through to the hosting methods you'll find that we make use of docker compose to run our system, there are a few key containers that make it function correctly:
All of these images need to be networked together correctly, and we use docker compose to manage when these services start and how they are networked. Running the i…