How to Build Docker image for nodejs apps | GitHub to DockerHub | Jenkins CI/CD Pipeline | BashMOD

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

ความคิดเห็น • 36

  • @S.Ajju1214
    @S.Ajju1214 10 หลายเดือนก่อน +2

    Nice one 👍

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

    Good presentation

  • @GauravSharma-os6ds
    @GauravSharma-os6ds 2 หลายเดือนก่อน

    you made it easy

  • @57_harshwardhanshinde94
    @57_harshwardhanshinde94 9 หลายเดือนก่อน +1

    really helpful

  • @regilearn2138
    @regilearn2138 5 หลายเดือนก่อน +1

    how it differ if we are developing mern stack micro service app. would appreciate if you can do a video in this

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

    Nice one👍👍

  • @kanigantivani4280
    @kanigantivani4280 3 หลายเดือนก่อน

    Pls inform me what are the plugin installed .in docker image push in to the docker hub

  • @mohammedunais2494
    @mohammedunais2494 9 หลายเดือนก่อน +1

    sudo: a terminal is required to read the password; either use the -S option to read from standard input or configure an askpass helper
    sudo: a password is required
    i got this error

  • @claudiofragao6866
    @claudiofragao6866 10 หลายเดือนก่อน +1

    Good 👍

  • @Glider-kr7pe
    @Glider-kr7pe 9 หลายเดือนก่อน

    Niece one ❤️

  • @joelfernandez5141
    @joelfernandez5141 ปีที่แล้ว

    Thank you

  • @Bashops
    @Bashops 5 หลายเดือนก่อน +1

    Thank you, Nice one

  • @AjayDas-m1q
    @AjayDas-m1q ปีที่แล้ว

    Nice 👍

  • @HosseinBajan
    @HosseinBajan 6 หลายเดือนก่อน

    Thanks
    I got this error in my pipline:
    script.sh.copy: 1: docker: not found
    Before I installed docker plugin in my jenkins, but I got this error yet.

    • @bashops_technologies
      @bashops_technologies  6 หลายเดือนก่อน

      Install docker in your jenkins server

    • @HosseinBajan
      @HosseinBajan 6 หลายเดือนก่อน

      @@bashops_technologies I run Jenkins using docker, and already I have installed docker on my server.

  • @AmiyaMohanty-f6r
    @AmiyaMohanty-f6r 10 หลายเดือนก่อน +1

    please provide your git repo url

  • @mohammedshabil1713
    @mohammedshabil1713 ปีที่แล้ว

  • @bhuvisakthi8888
    @bhuvisakthi8888 4 หลายเดือนก่อน

    Bro i'm getting this error while trying to build images on pipeline
    help me rectify this error
    + docker build -t my-node-app .
    DEPRECATED: The legacy builder is deprecated and will be removed in a future release.
    Install the buildx component to build images with BuildKit:

    • @bashops_technologies
      @bashops_technologies  4 หลายเดือนก่อน +1

      Docker’s legacy builder is deprecated, use BuildKit to build images.You can enable BuildKit by setting an environment variable before running the docker build command.
      export DOCKER_BUILDKIT=1
      This should be added before the docker build command. Your Jenkins pipeline script should look something like this
      + export DOCKER_BUILDKIT=1
      + docker build -t my-node-app .