Search Results for "docker-basics-for-gorails"
Lessons
Forum Threads
Docker Basics for Rails Discussion
Nice video. Coming back to docker after a couple years and you did a great job explaining what matters for rails setups.

17
General
Single Responsibility Principle Discussion
if you placed those classes in app/scripts wouldn't you have to wrap them in a module Scripts?

26
General
Rails & Vue.js Trello Clone - Part 1 Discussion
Yeah, thankfully webpacker is no longer the way to go. Unfortunately Rails didn't pick just one option to replace it, they left it open ended.
Personally, I use esbuild with https://github.com/rai...

33
General
Docker build fails with "cssbundling-rails: Command build failed, ensure `yarn build:css` runs without errors" (it does)
For any other folks out there struggling with this problem, in my case it turned out to be a docker issue.
1. On Docker desktop, Settings > General
2. Select `gRPC FUSE` instead of `VirtioFS`, ...

2
General
Docker rails assets:precompile
here is the Dockerfile
i setup the project with rails g new --main --database=postgresql --css=bootstrap
```
# Make sure it matches the Ruby version in .ruby-version and Gemfile
ARG RUBY_VERSION=3....

3
Rails
docker screencast?
I think Hey is deployed on kubernetes. I wonder what the BaseCamp Dockerfile looks like?

7
General
docker mysql
hi roberto, i don't know to achieve this, but I am curious if you figured out any answers. I am doing work on an older rails app and connecting to mysql using the mysql2 gem has been a challenge f...

2
Rails
Rails 6, Webpacker and Docker on Apple M1
Hi Chris,
I tried to leave a comment for episode #389 but was not successful. Not sure why. Anyway, I'm developing in Apple M1 and trying to dockerize a Rails 6 application, but running into a lot...

1
Rails
Action Cable with Puma, Nginx, Docker Swarm
All the tutorials I've found use puma for development and then passenger for production. But I wanted my environments to be the same!
Looking at the rails log and searching for /cable helped. The...

4
Servers
How to prevent missing images or assets after deployment in rails
I'm building a website as side project with a friend. Ngnix + Rails in docker.
After deployment, I usually do assets:clobber and assets:precompile. This changes the name of the assets.
When I try...

1
Rails
How to Deploy Rails to Fly.io Discussion
did you try deploying using sqlite?

9
General
How do I set up webpacker for production environment?
Im running my project first on my local machine using Production environment before deploying to production to make sure all is running fine.
im using docker with Rails version 5.2 and webpacker ve...

1
Rails
macOS sierra working w/ Ruby / Rails / RBENV?
Nothing so far unfortunately on sqlite. This is what I'm watching right now: https://github.com/sparklemotion/sqlite3-ruby/issues/195

7
General
GitHub Actions with Ruby on Rails: Setting up Continuous Integration Discussion
As a note, for devs with PR process, this setup will cause to be n+1 since you'll be triggering runs on any push without considering the branch, a better approach would be to only count pushes to `...

20
General
How to just receive emails through action mailbox?
Hi, I am currently testing and setting up an email service system.
**I just need to be able to receive emails , but no need to send email.**
1. my dns `mail.xxx.com` is ping successful, it can g...

1
Rails