Hi,
is it possible to install multi-container applications with docker-compose on cloudron? Or is there a good workaround for docker-compose?
Thanks in advance!
Best regards
Dibbo
Hi,
is it possible to install multi-container applications with docker-compose on cloudron? Or is there a good workaround for docker-compose?
Thanks in advance!
Best regards
Dibbo
Great nosql database with sync features and APIs for all major platforms.
@girish
Very cool, looking forward to it . When do you think will the release be available? Thank you cloudron team!
@Kubernetes
Yeah, you're right. I'll use the cloudron base image as soon as port ranges are supported. Thanks :).
@girish
Yeah, I also realized it eventually
It would be great if you mention in your tutorial that the manifest file is uploaded automatically when you are in the correct directory.
@nebulon
Thank you for your response!
Here's my manifest:
{
"id": "de.lfg.cbbuecherteam",
"title": "couchbase server",
"author": "Dibbo-Mrinmoy Saha dibbomrinmoy@hotmail.com",
"description": "database for the buecherteam",
"version": "1.0.0",
"healthCheckPath": "/",
"httpPort": 8091,
"addons": {
"localstorage": {}
},
"manifestVersion": 2
}
Is it possible to support the exposed port ranges with the httpPorts option in the cloudron manifest? If not, do you have an alternative solution to deploy couchbase on the server that is using cloudron?
Hi,
I want to setup a custom app, Couchbase Server (a nosql database), on my cloudron server.
I used this Dockerfile:
FROM couchbase:community-7.2.0
COPY CloudronManifest.json /CloudronManifest.json
RUN ln -s /app/data /opt/couchbase/var //persistent data
EXPOSE 8091-8096 11210-11211
CMD ["couchbase-server"] //start server
On my local machine building this docker image and running it is fine. I can reach the web UI on localhost:8091.
Installing the built image on my cloudron works until it is stuck in the "Starting" process.
The relevant errors are:
The container actually indicates that the web ui is starting:
Does anybody has an idea how to debug and solve this problem?
Many thanks!