We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8c0bae8 commit 6f90f13Copy full SHA for 6f90f13
scripts/deployments/compose_stack_yml.bash
@@ -80,7 +80,6 @@ envsubst < .env.nosub > .env
80
cp .env ..
81
cp ../../docker-compose.yml ./docker-compose.simcore.yml
82
83
-unset EC2_INSTANCES_ALLOWED_TYPES
84
"$repo_basedir"/scripts/docker-stack-config.bash -e .env docker-compose.simcore.yml docker-compose.deploy.yml > ../../stack.yml
85
#
86
services/simcore/envsubst_escape_dollar_sign.py
@@ -12,7 +12,7 @@
12
for line in lines:
13
if len(line) > 0 and len(line.lstrip()) > 0:
14
if line.lstrip()[0] != "#": # Ignore commented lines
15
- if "$" in line and not line.startswith("EC2_INSTANCES_ALLOWED_TYPES"):
+ if "$" in line:
16
ESCAPED_LINE = "".join(
17
[
18
x + "$${empty_var}"
0 commit comments