-
Notifications
You must be signed in to change notification settings - Fork 317
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Allow configuring image name (-t
) in initial build command
#253
Comments
That's not true, this plugin is using docker in docker, which isolates the builds. If you are using the plugin differently it's simply a corner case which is not covered by the intended use case. |
Mind showing what's the intended way to use it? I'm current setting
so it shares the docker runtime with the host OS. and I though this was intendend way to use DinD. |
That's not dind at all. Just remove the volume, than it will properly build and it's working as intended. |
I ran into this problem too - I am mounting the host docker volume because our image is a heavy build and without it, the plugin will not have an image cache and end up building images every single time. Is there a way to configure that? |
I stumbled on this too. We have drone pipeline building set of images to ECR repo (using Just using the format |
Currently the initial
docker build
command passes-t
option with commit hash and cannot be configured. If a repo has multiple dockerfiles and the both are built at the same time, it conflicts the tag name and results in error.The text was updated successfully, but these errors were encountered: