Docker Basics for Ruby on Rails Developers

Поділитися
Вставка
  • Опубліковано 15 жов 2024
  • ► Check out gorails.com for Pro episodes and more!
    ► SaaS business template for Ruby on Rails with built-in features like Payments, Teams, and much more: jumpstartrails...
    ► Ruby on Rails hosting with Hatchbox.io: hatchbox.io
    ► Learn how to add Stripe Payments (with SCA support!) with Ruby on Rails: courses.gorail...

КОМЕНТАРІ • 25

  • @shiva.sharan
    @shiva.sharan 2 роки тому +8

    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 !

  • @austinklenk9571
    @austinklenk9571 3 роки тому +10

    could you make a video on docker rails for production environment?

    • @ritec
      @ritec 3 роки тому +3

      I would love this as well.

  • @FedeOttalagano
    @FedeOttalagano Рік тому +1

    This was super useful. Thanks a lot!

  • @ScorpioPL
    @ScorpioPL 2 роки тому

    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.

  • @junjing2769
    @junjing2769 2 роки тому +1

    Wonderful and clear explaining this tech. Thanks.

  • @FranciscoCrespo-bd2zo
    @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

  • @DevBishwasBh
    @DevBishwasBh 2 роки тому

    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.

  • @developerfoe
    @developerfoe Рік тому +1

    just great as always

  • @MaiAbuThraa
    @MaiAbuThraa 3 роки тому +1

    This is very helpful, I have to try it, thanks

  • @trailblazer_nomad
    @trailblazer_nomad 2 роки тому

    Can you help me understand how it works on postgres in your docker container while your database.yml is configured for Sqlite?

  • @w1717djdh
    @w1717djdh 2 роки тому

    should I need to add database_url to docker- compose??

  • @DevBishwasBh
    @DevBishwasBh 2 роки тому

    Docker Compose up is giving port already in use stuff.

  • @LawZist
    @LawZist 2 роки тому

    I would really like to know how I can attach rubymine debugger to ruby docker

  • @vesh95
    @vesh95 3 роки тому +1

    Best Docker Build

  • @akemrir
    @akemrir 3 роки тому

    hi, nice introduction video. Can you share how you set verbosity level when building image?

  • @ascetahedonista7161
    @ascetahedonista7161 2 роки тому +1

    Dude, forget about the docker compose I want to know how to set that vim configuration.

    • @GorailsTV
      @GorailsTV  2 роки тому +1

      Everything for my vim setup is at GitHub.com/excid3/dotfiles

  • @indie3d
    @indie3d 3 роки тому

    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!

    • @bcgianni
      @bcgianni 3 роки тому

      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.

  • @darkpill
    @darkpill 3 роки тому

    How do you deal with the horrendous speed of docker on Mac?

  • @xaogao
    @xaogao 3 роки тому +1

    thx for the video

  • @NewError404
    @NewError404 3 роки тому +1

    great.

  • @mikopiko
    @mikopiko 2 роки тому

    I don't think it is necessary to run "yarn install", "yarn" is enough, same applies to "bundle" instead of "bundle install".