How to containerize Backstage with Docker

Поделиться
HTML-код
  • Опубликовано: 6 сен 2024
  • How to containerize Backstage with Docker! Watch as I run through the necessary steps to deploy backstage locally with Docker! This video involves some debugging and how to have an environment variable file in a docker run locally!
    Backstage Documentation: backstage.io/d...
    #DevOps #Cloud #Backstage #Coding #Software
    Consider joining the channel / @fosterdevops
    GitHub: github.com/fos...
    Medium: / mifoster1723

Комментарии • 8

  • @summerflamingo
    @summerflamingo 16 дней назад

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

  • @BiohaZd5
    @BiohaZd5 Месяц назад

    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.

  • @willww64
    @willww64 11 дней назад

    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.

  • @user-tl4nq3ib5g
    @user-tl4nq3ib5g 2 месяца назад +1

    Awesome job. Thanks!

  • @SaifCSE__
    @SaifCSE__ 2 месяца назад

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

  • @jvd-j7m
    @jvd-j7m 2 месяца назад

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

  • @akhia6661
    @akhia6661 Месяц назад

    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 Месяц назад

      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'