Docker Basics for Ruby on Rails Developers

แชร์
ฝัง
  • เผยแพร่เมื่อ 28 พ.ย. 2024

ความคิดเห็น • 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 !

    • @GorailsTV
      @GorailsTV  2 ปีที่แล้ว +1

      Thanks Shiva!

  • @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!

  • @junjing2769
    @junjing2769 3 ปีที่แล้ว +1

    Wonderful and clear explaining this tech. Thanks.

  • @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.

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

  • @w1717djdh
    @w1717djdh 2 ปีที่แล้ว

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

  • @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.

  • @LawZist
    @LawZist 2 ปีที่แล้ว

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

  • @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?

  • @MaiAbuThraa
    @MaiAbuThraa 3 ปีที่แล้ว +1

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

  • @developerfoe
    @developerfoe ปีที่แล้ว +1

    just great as always

  • @DevBishwasBh
    @DevBishwasBh 2 ปีที่แล้ว

    Docker Compose up is giving port already in use stuff.

  • @vesh95
    @vesh95 3 ปีที่แล้ว +1

    Best Docker Build

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

  • @akemrir
    @akemrir 3 ปีที่แล้ว

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

  • @darkpill
    @darkpill 3 ปีที่แล้ว

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

  • @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.

  • @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".