I just stumbled on your channel and this is a gold mine. Well explained and well documented. Amazing structure and we'll curated playlists. Kudos to you sir !
@GorailsTV2 жыл бұрын
Thanks Shiva!
@austinklenk95713 жыл бұрын
could you make a video on docker rails for production environment?
@ritec3 жыл бұрын
I would love this as well.
@FedeOttalagano Жыл бұрын
This was super useful. Thanks a lot!
@junjing27693 жыл бұрын
Wonderful and clear explaining this tech. Thanks.
@ScorpioPL2 жыл бұрын
I like this setup very much. Everything is separate. Any hints on how to setup a production environment? From what I understand Capistrano and Docker don't mix very well if at all.
@FranciscoCrespo-bd2zo Жыл бұрын
Hello, when I try to: docker run filmoteca (that is my app name) it says: "Unable to find image 'filmoteca:latest' locally docker: Error response from daemon: pull access denied for filmoteca, repository does not exist or may require 'docker login': denied: requested access to the resource is denied." ANY IDEAS? thanks
@trailblazer_nomad2 жыл бұрын
Can you help me understand how it works on postgres in your docker container while your database.yml is configured for Sqlite?
@DevBishwasBh2 жыл бұрын
I have being settling my node_modules inside the app/javascript/node_modules, but I dunno how can I do in within the main directory of project. I heartly request you to make a video on it.
@LawZist2 жыл бұрын
I would really like to know how I can attach rubymine debugger to ruby docker
@developerfoe Жыл бұрын
just great as always
@w1717djdh2 жыл бұрын
should I need to add database_url to docker- compose??
@akemrir3 жыл бұрын
hi, nice introduction video. Can you share how you set verbosity level when building image?
@MaiAbuThraa3 жыл бұрын
This is very helpful, I have to try it, thanks
@DevBishwasBh2 жыл бұрын
Docker Compose up is giving port already in use stuff.
@ascetahedonista71612 жыл бұрын
Dude, forget about the docker compose I want to know how to set that vim configuration.
@GorailsTV2 жыл бұрын
Everything for my vim setup is at GitHub.com/excid3/dotfiles
@vesh953 жыл бұрын
Best Docker Build
@indie3d3 жыл бұрын
Hi, when you write "- POSTGRES_PASSWORD=passwortd" at the 7:30 minute mark... Do I need to substitute the "password" value with my own secret password? example: "- POSTGRES_PASSWORD=12345" or do I need to keep "password" instead. Thanks in Advance!
@bcgianni3 жыл бұрын
Hey Indie3D, that is an environment variable that will set the DB password, if you set as "password" in the database service, you will need to set as "password" in your rails app. If you set "12345", you use "12345" in your app (maybe set in the database.yml file for you on the app end). And same for a production environment, the production database will have a user and password for the app to access it, and the app will need to match whatever it is.
@darkpill3 жыл бұрын
How do you deal with the horrendous speed of docker on Mac?
@xaogao3 жыл бұрын
thx for the video
@NewError4043 жыл бұрын
great.
@mikopiko2 жыл бұрын
I don't think it is necessary to run "yarn install", "yarn" is enough, same applies to "bundle" instead of "bundle install".