Docker or Git Deploy
Push your code or a pre-built Docker image. We handle the build and deployment process automatically using your Dockerfile.
Deploy your Rails applications to a managed Docker platform. Includes PostgreSQL, Redis, and persistent volumes out of the box. No server management required.
# docker-compose.yml
services:
web:
image: my-rails-app
command: ./bin/rails server
environment:
- RAILS_ENV=production
- RAILS_MASTER_KEY=${RAILS_MASTER_KEY}
db:
image: postgres:16
volumes:
- db_data:/var/lib/postgresql/data
redis:
image: redis:7Historically, hosting Rails meant configuring a Linux VPS with Capistrano, Nginx, and Passenger. Today, the ecosystem has evolved. With Rails 7.1+ shipping with a default Dockerfile, modern deployment is container-first.
Modern Rails apps use the Puma web server by default, which is optimized for concurrency. A good hosting platform needs to support multi-process and multi-threaded execution without complex configuration, allowing your app to handle more traffic with less RAM.
Tools like Kamal (formerly Mrsk) have popularized Docker-based deployments in the Rails community. Docker bundles Ruby, system libraries (like libvips for ActiveStorage), and your gems into a single artifact, eliminating "it works on my machine" issues and making deployment predictable.
Production Rails setups share a common architecture, regardless of the provider:
RAILS_MASTER_KEY or individual environment variables injected at runtime.We provide a managed platform that maps directly to the standard Rails architecture.
Push your code or a pre-built Docker image. We handle the build and deployment process automatically using your Dockerfile.
Spin up managed PostgreSQL, MySQL, or Redis instances alongside your app. Perfect for Sidekiq and ActionCable.
Mount volumes for ActiveStorage local disk service or SQLite databases. Data persists across deployments and restarts.
All data and workloads are hosted in Germany (Falkenstein), ensuring low latency for European users and GDPR compliance.
"Free" hosting is particularly difficult for Rails due to its memory footprint. Providers offering free tiers often:
Hostim.dev offers a preview tier for testing, but our focus is on reliable, paid production hosting that gives your Rails app the resources it needs to run smoothly.
You might see terms like "web hosting" and "app hosting" used interchangeably, but they refer to different paradigms.
Traditional Web Hosting (Shared): Designed for PHP/WordPress. Often uses Phusion Passenger in a shared environment. Hard to update Ruby versions, install system dependencies, or run background workers.
App Hosting (PaaS): Designed for modern applications. Provides the necessary environment for containers, build processes, and service orchestration. This is what Hostim.dev provides.
The practical workflow on a container-based platform.
Dockerfile generated by modern Rails versions or provide your own. You can also connect a Git repository containing theDockerfile. Hostim builds the image if needed.RAILS_ENV, RAILS_MASTER_KEY, database credentials, and other secrets in the dashboard.Get your Rails application running in minutes.
You can create free MySQL, PostgreSQL, Redis databases, and persistent volumes. App containers start at €2.5/month. Each user gets one 5-day trial project with everything included – apps, DBs, volumes, metrics.
Yes. Paste your Docker Compose YAML and we'll generate the services automatically. You can also deploy from a Dockerfile or Git repository (repo should have Dockerfile so our system can build the image).
On bare-metal servers located in Germany. We do not use AWS, GCP, or other large cloud providers – your data stays in the EU.
No. Hostim.dev removes Kubernetes complexity. You manage apps, databases, and resources – not clusters or YAML.
Right now, each account manages projects individually. Multi-user roles and team collaboration are planned – we're actively listening to early users to shape this.