Aliaksei Harshkalep

Results 14 comments of Aliaksei Harshkalep

Hi @PhenX , awesome contribution, let us review and merge!

I've just noticed Oracle test is failed on AppVeyor, let's try to find out the reason.

Hi @Wasenshi123 , it looks like your CI/CD builder agent doesn't have docker installed on it. Could you check this somehow, please?

Did you try to remove all containers: `docker rm -f (docker ps -aq)`

Can you try to remove postgress image (`docker rmi`) from builder machine and then pull it manually (`docker pull`)?

For docker in docker scenario, you need to configure test env: ``` return new DockerEnvironmentBuilder() ..DockerInDocker(true) ``` In order to run this from both local and CI/CD envs, you probably...

By default `TestEnvironment` tries to connect to `unix:///var/run/docker.sock` if it runs on Linux and to `npipe://./pipe/docker_engine` if it is on Windows. Maybe for Circile CI you need to specify exact...

I found in this documentation https://circleci.com/docs/2.0/building-docker-images/ that Circle CI creates alias `remote-docker` so you can try: ``` var client = new DockerClientConfiguration(new Uri("http://remote-docker")).CreateClient(); // maybe port should be specified var...

Both configuration options looks good but building nicely looking Fluent API might be difficult. That's why second option looks a bit more realistic. Also would be interesting to see how...

@jzabroski Right now we are trying to understand what will be more convenient for usage - fluent notation or just options with properties. Soon we will see some PRs and...