Deploy Docker Image, Github Container Registry & Github Actions - Docker Part 4

Поделиться
HTML-код
  • Опубликовано: 16 сен 2024

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

  • @ajudmeister
    @ajudmeister  24 дня назад +1

    Sorry for the delay on this video; I had a few (actually, more than a few) family matters to attend to. Trying to post a video regularly once a week.

  • @CodeAndChords_Rj
    @CodeAndChords_Rj 24 дня назад

    very helpful as always ! thank you so much !

  • @user-iu8kt2xn4w
    @user-iu8kt2xn4w 24 дня назад

    Excellent as Always, Bro

  • @TemmyCodingLifestyle
    @TemmyCodingLifestyle 24 дня назад

    Thank you for this.

  • @vuquangtruong5950
    @vuquangtruong5950 23 дня назад

    Awesome video. Looking for video for configuring log file in docker

    • @ajudmeister
      @ajudmeister  23 дня назад

      Hi, if you want to create a specific log eg. for the celery container, you can define a configuration file for it and add it to the runcommand:
      celery -A a_core worker --config=celeryconfig
      # celeryconfig.py
      worker_log_file = '/var/log/celery/worker.log'
      worker_log_level = 'INFO'

    • @vuquangtruong5950
      @vuquangtruong5950 22 дня назад

      ​@@ajudmeister
      Love your video, man. It really saved my day from trying to figure out how to dockerize Django. Hope to see your RUclips channel go viral soon!

  • @sidds09
    @sidds09 22 дня назад

    helpful. pls do DRF projects too.

    • @ajudmeister
      @ajudmeister  18 дней назад +1

      I will cover this in a API series

  • @frameff9073
    @frameff9073 24 дня назад

    thank

  • @caglargulucan
    @caglargulucan 15 дней назад

    Railway is fast and cheap, but setting up Docker, environment variables, and start commands for each service individually was a bit tedious and laborious. What do you think about DigitalOcean or AWS, and how do you choose in your own real projects? By the way, I'll be honest, it was the best training I've ever seen.

    • @ajudmeister
      @ajudmeister  14 дней назад +1

      @@caglargulucan tbh I have not tried it with DigitalOcean or AWS and they might be much better with deploying docker Images and automating multi container setups. I dunno. As you said, I like railway because it’s fast, cheap and I had no problems so far.

  • @caglargulucan
    @caglargulucan 13 дней назад

    "Sometimes entrypoint_sh didn’t work on Windows OS. Instead, I used this command in the docker-compose_yml file services > app: sh -c 'python manage_py makemigrations && python manage_py migrate && python manage_py runserver 0.0.0.0:8000'. This approach worked."

    • @ajudmeister
      @ajudmeister  10 дней назад +1

      Yes this works, or also the vertical pip symbol:
      command: |
      python manage.py makemigrations
      python manage.py migrate
      python manage.py runserver 0.0.0.0:8000