What are the free hosting or generous free plan hosting for workflow but not render or railway

Describe the problem/error/question

I finished a course but all workflows were in local docker desktop image, now i want to make a deployment in a hosting service like render or railway but different than them , because render and railway needs payment and my free trial ended .. if there any hosting service you recommend to me i’d appreciate . I need in first of deployments to test my deployment freely not to pay money for tests that still needs clients and iam testing my knowledge

Please share your workflow

Share the output returned by the last node

post a messenger message by ai agent to respond for my customers

note : i delete the credentials from .json but in my actual workflow i have the credentials and the workflow runs correctly

Information on your n8n setup

    1. n8n version:1.79.3
    2. Database type (default is SQLite):
    3. EXECUTIONS_PROCESS setting (default: own / main):
    4. How n8n is running (Docker, npm, n8n Cloud, Desktop App):
    5. Operating system:

Hi @Osama_Alwaly, welcome!

Since your bot runs on a Messenger webhook, the key thing is an always-on host. Many free tiers sleep when idle, which silently breaks incoming webhooks, and that’s usually why the Render and Railway free plans fall short here.

The best genuinely free, always-on option is Oracle Cloud’s Always Free tier. You get an Ampere ARM VM that runs 24/7 at no cost, and you run n8n on it with Docker exactly like you do locally.

Two caveats: the free ARM instances can be hard to grab when capacity is tight, and since it’s a full VM you handle the HTTPS reverse proxy yourself. If you’d rather pay a little for simplicity later, Hetzner is a few euros a month and very reliable.

Even if you do get it, you will still need to hit certain minimum RAM and CPU usage. Otherwise, you will get “evicted”

You can use cloudflared

yea, cloudfared works well too! Thanks koolang!