Reputation: 912
Docker allows us to push dns options through docker run, using --dns-opt switch. For some reason, I am unable to see this in AWS ECS. Is there a way to do this ?
Upvotes: 1
Views: 527
Reputation: 803
Unfortunately it seems --dns-opt
is currently an unsupported flag in ECS task definitions.
See https://github.com/aws/amazon-ecs-agent/issues/502 for a fuller list of unsupported Docker run parameters (albeit some of these flags are now supported.
Upvotes: 1