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
Note that I’m using OrbStack and skaffold doesn’t seem to be aware of my docker context, so I have to manually set DOCKER_HOST via export DOCKER_HOST=$(docker context ls --format json | grep 'Current":true' | jq -r '.DockerEndpoint'). My DOCKER_HOST is set to unix:///Users/gravepa/.orbstack/run/docker.sock
The text was updated successfully, but these errors were encountered:
creating container in local docker: Error response from daemon: Invalid container name (example.com/repo/imagename), only [a-zA-Z0-9][a-zA-Z0-9_.-] are allowed
This builds fine but fails when you do skaffold run/etc
I also have the same segmentation fault when trying to use scaffold dev to deploy to docker with docker-compose (I use docker-compose to try to bind volumes).
Even running with verbosity to trace I have no idea what's happening, there's no log not even a trace log from docker, it segfaults directly.
Expected behavior
Build succeeds and deploy succeeds. No panic.
Actual behavior
Build succeeds, but deploy causes skaffold panic
Information
Steps to reproduce the behavior
skaffold dev
Note that I’m using OrbStack and skaffold doesn’t seem to be aware of my docker context, so I have to manually set DOCKER_HOST via
export DOCKER_HOST=$(docker context ls --format json | grep 'Current":true' | jq -r '.DockerEndpoint')
. My DOCKER_HOST is set tounix:///Users/gravepa/.orbstack/run/docker.sock
The text was updated successfully, but these errors were encountered: