gabi PRO
Joined 12/1/2017
gabi PRO said over 2 years ago on Dabbling with Turbo :
Is there any way to customize the confirmation message that is displayed when deleting the record? Thanks!

gabi PRO said about 2 years ago on Ruby on Docker :
Hi,

I'm hitting this error when following along and running  docker-compose up with all the files looking just like in the video


=> ERROR [ 5/13] RUN curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add -                                                                         0.6s
------
 > [ 5/13] RUN curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add -:
#9 0.285 Warning: apt-key output should not be parsed (stdout is not a terminal)
#9 0.543 gpg: no valid OpenPGP data found.
#9 0.543 Segmentation fault
------
failed to solve: rpc error: code = Unknown desc = executor failed running [/bin/sh -c curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add -]: exit code: 2


What could be a possible solution? I'm in an Apple M1 Pro running  Monterey, if that is relevant. Also, I'm trying to use Rails 6.1.4.6 instead of the latest stable version.

Thanks in advance for any help!

gabi PRO said about 2 years ago on Ruby on Docker :
Hmmm... After googling for a bit and trying different things, I was able to make it work by eliminating that part and installing yarn after nodejs like this:

RUN npm install -g yarn

At least, running docker-compose up worked. Not sure if I will run into other issues in the next step.

gabi PRO said about 2 years ago on AWS App Runner :
If we are developing in Apple M1 pro, do we have to  do bundle lock --add-platform x86_64-linux-musl   and  use buildx specifying the platform also in development? I've been trying to dockerize a Rails 6 application following some of your other videos (the one where you use a template to create new ones) but I end up getting errors when trying to run docker-compose up. The errors generally refer to a gem that didn't install and take place when the command rails webpacker:install is trying to run.

gabi PRO said about 2 years ago on Docker on Rails 7 :
murat.ustuntas I see you mentioned about 4 months ago you found a solution for an error you were seeing regarding Nokogiri. I'm not sure I understand exactly what your solution was. You said:

I found problem i think, Gemfile.lock file contains nokogiri. When moving Gemfile.lock and bundle install then problem solved. 

What does that mean? Did you remove the Gemfile.lock? I'm seeing similar errors to your and would appreciate the help.