Can anyone help with the next issue:
In My application (Asp Net Core 3.1) I have the next connection string
I should create some containers, which have different connection strings but the same image.
I wrote next docker run command (windows server) :
docker run --rm --name admin -it -d -p 8080:8080 qulix/admin -e "ConnectionString:MSSQL"="Server=<IP adress>;Database=BasketballDb;User Id=user;Password=123456;Trust_connection=false"
and connection string didn't change. I don't understand why but I start to read about environment variables but I don't correctly understand how it should help me.
Update
If I change a location it read it as the image name and get the next error
C:\Program Files\Docker\Docker\resources\bin\docker.exe: invalid reference format: repository name must be lowercase.