David García Vives
David García Vives
Hello @martins-vds , did you try a one-liner? Was my first idea ``` container.EnvironmentVariables = container.EnvironmentVariables?.Any() == true ? container.EnvironmentVariables.Union(keyValuePairs).ToArray() : keyValuePairs; ```
Hello, this might help Recently I've been dealing with similar problems on running tests over linux/windows/azure ci-cd pipelines and the solution has been to create different images and stick them...
@jzabroski sure 1 - Build and push the two images to docker hub. One using windows containers, other using linux containers: https://github.com/dgvives/base-mysql-windows-docker ``` docker image build . -t davidgarciavivesdn/base-mysql:windows docker...
@PhenX , in case you haven't solved it yet. it might be the image being used by the CI/CD agent doesn't have time zones initialized. This is the case when...
@PhenX it seems downgrading package Oracle.ManagedDataAccess.Core to version 2.12.0-beta3 solves this issue https://github.com/Deffiss/testenvironment-docker/pull/48/commits/c8c068bd7b916a8c370360a8e22f42c6e017ac1f https://ci.appveyor.com/project/Deffiss/testenvironment-docker/builds/37139506 Also, using Oracle.DataAccess.Core may solve this, but I haven't found this package. Same for setting TZ...
Just an update, Yes it is possible to run CI tests on Azure Pipelines. You need to generate images compatible with the build agent used on Azure Pipelines and made...
@HofmeisterAn the _stream corruption_ tests come from #375, I didn't run into this problem myself but I was able to replicate it using that piece of code. I would say...
This is a good starting point https://docs.docker.com/engine/api/v1.41/#operation/ContainerCreate
Did you try this with the current repository code? I believe this was solved, but nuget package wasn't updated then
@Emdot I'm glad you brought this here. Same happens on endpoints returning Task instead of existing Task < DockerApiResponse > I'm not a maintainer, but I would like to see...