Offloading Docker image builds
closed
ThéoCouss
On a large server with frequent builds, creating extensive Docker images consumes significant resources. Offloading the build process to another machine would effectively resolve all resource-related issues during builds.
M
Mark Topper
You can already move the builds to any other CI, this is a feature in Docker.
Example, if you have a Github repository, this is often where you need to build the docker images. Instead of connecting Github repository to the projects source on EasyPanel.
You could setup a Github action to build and tag the Docker image on commits, and then just use that image in EasyPanel.
You have now offloaded the build processing to Github Actions.
Closing this, unless there was anything else you had in mind regarding this?
M
Mark Topper
closed
M
Mark Topper
You can already move the builds to any other CI, this is a feature in Docker.
Example, if you have a Github repository, this is often where you need to build the docker images. Instead of connecting Github repository to the projects source on EasyPanel.
You could setup a Github action to build and tag the Docker image on commits, and then just use that image in EasyPanel.
You have now offloaded the build processing to Github Actions.
Closing this, unless there was anything else you had in mind regarding this?
Loan Talvat
up