When a container is being deployed and <container>.env contains a variable that is quoted, such as MDATA_DB_URL="//db:5432/dbname", the value of the variable in the container contains the quotes.
Example:
portal.env:
MDATA_DB_URL="//db:5432/dbname"
Container variable value:
[root@12331e122a10 /]# echo $MDATA_DB_URL
"//db:5432/dbname"
[root@12331e122a10 /]#