What Version of .Net Is Installed on Your Computer?

Figuring out what version of .Net is on your computer is not so easy to answer. Do you have the new .Net or the .Net Framework? Let’s look at ways to answer this questions.   .Net (Core) For .Net you can this command to get a list of all installed SDKs on your machine:

Read more

How to Fix the Invalid Interpolation Format Error in Docker Compose

We run into a strange error when we added a new environment variable to our Docker Compose file:

ERROR: Invalid interpolation format for “environment” option in service “api”: “MY_KEY=Abc$5” Our docker-compose.yaml file looks like this:

The problem is the $ in the value of the environment variable MY_KEY. Docker allows a lot of …

Read more