tropicoo / yt-dlp-bot

Self-hosted Video Download Telegram Bot 🇺🇦
BSD 3-Clause "New" or "Revised" License
205 stars 71 forks source link

Why is there no build context for base-image? #231

Open ShrirajHegde opened 7 months ago

ShrirajHegde commented 7 months ago

In base-image service in docker-compose, why doesn't base-image have a context?

Wouldn't adding the context make it easy to build and run the services with just:

  docker compose up -d --build

Without requiring an extra build step?

tropicoo commented 7 months ago

Base image needs to be built firstly. It’s used in other images.

ShrirajHegde commented 7 months ago

Ah, okay.

Why not provide an official image? GitHub's workflows can be used to build and publish on every push/release.

Then tools like watchtower can be used to keep it up to date.

If you want, I can create a pull request with workflow implementation.