Sultanmyrza Kasymbekov
Joined
50 Experience
0 Lessons Completed
0 Questions Solved
Activity
Posted in Deploy rails 7.2+
Rails 7.2 dev containers include a compose file, enabling me to run Rails, PostgreSQL, and Redis locally with just Docker installed on my system.
So I created run: rails new --rails-version 7.2.0 \
my_rails_app \
--css=tailwind \
--database=postgresql \
--asset-pipeline=propshaft \
--devcontainer
Now what’s the easiest way to deploy a Rails 7.2 app? Anyone tried?