-
Notifications
You must be signed in to change notification settings - Fork 881
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
panic during libnetwork.(*resolver).Start #1405
Comments
I think this may be similar to #1117, but I'm seeing this in 1.12.0. |
@bprodoehl Can you give the specific steps you are using that results in this panic ? |
I'll try to make a shell script that reproduces it. I see it regularly with a chaos script that uses the API to start or stop a private image at random. Probably the only interesting bits from the create options are that it's a privileged container that gets attached to a bridge-type network named "internet". var createOpts = {name: containerName,
Image: 'my/privateimage',
Tty: true,
HostConfig: {Privileged: true, NetworkMode: 'internet'},
Hostname: containerName,
Env: ['MYVAR='+containerName]}; |
@bprodoehl If you were able to recreate it with a script can you share the script ? From the decode I am not able to come up with a clear sequence that can lead to the panic. Do you have heathcheck enabled in your images ? |
Fixed by #1561 |
Seeing this in Docker 1.12.0 after starting and stopping containers at random.
The text was updated successfully, but these errors were encountered: