Can I configure it from the CLI while installing the application?
sarthak.narayan
Posts
-
Process is getting killed by cloudron -
Process is getting killed by cloudronWhere can I find these settings and how can I configure it? Also can it be done using the cloudron CLI while installing?
-
Process is getting killed by cloudronI am running the free version of Cloudron (only 2 apps allowed). The size of my container is close to 3.5GB. When I run the main process I get the following message.
./entrypoint.sh: line 7: 8 Killed python3 airtable_process.py
Cloudron is continuously killing the main process. Is there a limitation to the RAM a process can consume imposed by cloudron containers?
If yes then is it only present in the free version or in the paid version as well? Also if its present in the paid version then how can I increase the RAM requirements of the container?
Thanks
-
How to add a cronjob in cloudronGot it thanks.
-
How to add a cronjob in cloudronI added it here and then saved it. I restarted the app but I cannot see my cronjob when I use
crontab -l
. -
How to add a cronjob in cloudronHi,
When I try to add a cronjob using the command
echo "0 22 * * * curl -X POST http://localhost:8000/refresh_webhook >> /var/log/cron.log 2>&1" | crontab -
I get the error
/var/spool/cron/: mkstemp: Read-only file system
.
How can I add a cronjob inside the container in cloudron? -
How to run simple Python scripts on CloudronGot it thanks. I am planning to install and run nginx for health check and then run my python script inside it as a cronjob.
-
How to run simple Python scripts on CloudronWhy should I do that if I just want to run a simple Python script.
-
How to run simple Python scripts on CloudronSo just to clarify instead of doing
cloudron install --image <image-name>
I docloud debug --image <image-name>
? -
How to run simple Python scripts on CloudronCan you point me to the docs that show how to put it in debug mode?
-
How to run simple Python scripts on CloudronIs there a way to run simple Python scripts on Cloudron packaged in a Docker container? I know Cloudron requires a health check endpoint. Is it possible to run simple scripts without a health check endpoint?
-
Cloudron is removing contents from the /tmp folder in the container.I see. Thanks for the update.
-
Cloudron is removing contents from the /tmp folder in the container.Hi,
I have been using Cloudron to host my Django API and I notice that it works fine for 5 - 6 hours and then goes to the status of Not Responding.
Upon further digging, I found out the reason for this is the missing/tmp/test/django/views/templates/technical_500.html
file. I have installed Django in/tmp/test
and Django needs this file to function properly.
This file is present when I start the application but disappears after 5 - 6 hours leading to the status of Not Responding.
I tried running the same docker container on my local system and found out that the API is running for days without any problem so there is no problem with Django application or version.
Does Cloudron clear the /tmp folder regularly? If yes then is there an option to stop it?
If not then how can I install my pip packages at some other location other than/tmp
. For some reason all the folders except/tmp
are read only.
Thank you.