Stadzior

Results 9 comments of Stadzior

@HofmeisterAn right. Removing Dockerfile from ImageBuildParameters leaded me to another error: `ADD failed: file not found in build context or excluded by .dockerignore: stat test.txt: file does not exist.` Can...

@darkguy2008 good question. I'm also waiting for the answer.

@HofmeisterAn I've done something like this basing on your suggestion: ``` var parameters = new CreateContainerParameters { Name = $"incoming.api-{fileName}", Image = "incoming.api:latest", HostConfig = new HostConfig { AutoRemove =...

ExecCreateContainerAsync is missing in the newest version. Has it any new equivalent to emulate running "docker exec" command?

@HofmeisterAn oh ok it was moved from "Containers" to "Exec" so it can be reached via client.Exec.ExecCreateContainerAsync instead of client.Containers.ExecCreateContainerAsync.

I'm trying to run the following commands inside a rabbitmq container: ``` docker exec incoming.queue rabbitmqadmin declare exchange name=test-exchange type=direct docker exec incoming.queue rabbitmqadmin declare queue name=test-queue durable=false docker exec...

Ok so the error is: `Could not connect: [Errno 99] Cannot assign requested address` which means rabbitmq did not start yet when the command was executed. Thank you very much...

@HofmeisterAn I'm sorry but I was wrong. The rabbitmq is started while the commands are executed. E.g. changing: ``` var execDeclareExchangeParameters = new ContainerExecCreateParameters { Cmd = new List {...

@HofmeisterAn you were right, It took RabbitMQ several more seconds to be ready to use. Thanks once again.