You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
docker-compose build fails when image name contains capital letters (maybe related to #1416). However, the error message returned is
ERROR: Couldn't connect to Docker daemon - you might need to run `docker-machine start default`.
when running locally or
Couldn't connect to Docker daemon at http+docker://localhost - is it running?
If it's at a non-standard location, specify the URL with the DOCKER_HOST environment variable.
Make a compose file with capital letters in image name
docker-compose build
Profit
Observed result
Couldn't connect to Docker daemon at http+docker://localhost - is it running?
If it's at a non-standard location, specify the URL with the DOCKER_HOST environment variable.
Expected result
invalid reference format: repository name must be lowercase
Additional information
ubuntu 18.04 desktop
drone/dind/linux/amd64
The text was updated successfully, but these errors were encountered:
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.
I tried to reproduce this issue with docker-compose 1.24 and got expected behaviour: ERROR: invalid reference format: repository name must be lowercase
Description of the issue
docker-compose build
fails when image name contains capital letters (maybe related to #1416). However, the error message returned isERROR: Couldn't connect to Docker daemon - you might need to run `docker-machine start default`.
when running locally or
if running on a drone server.
I only figured this out once I tried running
docker build -t url.com/proj/REPO_WITH_CAPS/img:latest
and got the useful message:
invalid reference format: repository name must be lowercase
Context information (for bug reports)
Output of
docker-compose version
Output of
docker version
Output of
docker-compose config
(Make sure to add the relevant
-f
and other flags)Steps to reproduce the issue
docker-compose build
Observed result
Expected result
invalid reference format: repository name must be lowercase
Additional information
The text was updated successfully, but these errors were encountered: