How to containerize Backstage with Docker

แชร์
ฝัง
  • เผยแพร่เมื่อ 3 ม.ค. 2025

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

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

    Awesome 👍

  • @RomanF-h9t
    @RomanF-h9t 6 หลายเดือนก่อน +1

    Awesome job. Thanks!

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

    thanks a lot, great video! this help my backstage deployed!

  • @jvd-j7m
    @jvd-j7m 6 หลายเดือนก่อน

    Great content. Thank you.
    Is there any way to test docker application with git hub user ?

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

    Hi I am getting an error when I am logging using a guest it says you should have legacy token

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

    Hello, I'm really appreciate your great videos, it helped a lot to get it up and running. But after finishing this playlist of backstage, I still can't get the bigger picture of backstage, what backstage really is in a real tech company, what backstage can help us in everyday work. I'm too lazy to figure out what's software catalog or other jargons through reading the documents. I just want to find some videos that show the fancy features of backstage. But all I could get are simple demos. I still can't find a compelling reason for me to adopt it.
    Could you consider making some more videos, no coding, no configuration, just demonstrate how powerful it is. I think that would be great.

  • @BiohaZd5
    @BiohaZd5 5 หลายเดือนก่อน

    Great video. It would be good if you could upload this video again but exclude all the errors and issues so it can easily be followed.

  • @akhia6661
    @akhia6661 5 หลายเดือนก่อน

    This docker container is connected to your sqlite memory part, not the postgres
    because in your dockerfile it says ENV NODE_ENV production
    so it goes to the app-config.production.yml.
    but what if i want to use postgresql? it throws the same error you had:
    Error: Failed to connect to the database to make sure that 'backstage_plugin_app' exists, Error: connect ECONNREFUSED 127.0.0.1:5432
    at PgConnector.getClient (/app/node_modules/@backstage/backend-defaults/dist/database.cjs.js:454:15)

    • @akhia6661
      @akhia6661 5 หลายเดือนก่อน

      for anyone struggling with this,
      i searched for my (docker) ip and put it in host instead of 127.0.0.1
      ifconfig:
      inet 172.17.0.1
      put it into;
      database:
      client: pg
      connection:
      host: '172.17.0.1'
      port: '5432'
      user: 'postgres'
      password: 'secret'