diff --git a/tests/interpolation/docker-compose-colon-question-error.yml b/tests/interpolation/docker-compose-colon-question-error.yml new file mode 100644 index 0000000..7761f45 --- /dev/null +++ b/tests/interpolation/docker-compose-colon-question-error.yml @@ -0,0 +1,8 @@ +version: "3.7" +services: + variables: + image: busybox + command: ["/bin/busybox", "sh", "-c", "export | grep EXAMPLE"] + environment: + EXAMPLE_COLON_QUESTION_ERROR: ${NOT_A_VARIABLE:?Missing variable} + diff --git a/tests/interpolation/docker-compose-question-error.yml b/tests/interpolation/docker-compose-question-error.yml new file mode 100644 index 0000000..ea07072 --- /dev/null +++ b/tests/interpolation/docker-compose-question-error.yml @@ -0,0 +1,8 @@ +version: "3.7" +services: + variables: + image: busybox + command: ["/bin/busybox", "sh", "-c", "export | grep EXAMPLE"] + environment: + EXAMPLE_QUESTION_ERROR: ${NOT_A_VARIABLE?Missing variable} + diff --git a/tests/interpolation/docker-compose.yml b/tests/interpolation/docker-compose.yml new file mode 100644 index 0000000..c5358e0 --- /dev/null +++ b/tests/interpolation/docker-compose.yml @@ -0,0 +1,14 @@ +version: "3.7" +services: + variables: + image: busybox + command: ["/bin/busybox", "sh", "-c", "export | grep EXAMPLE"] + environment: + EXAMPLE_VARIABLE: "Host user: $USER" + EXAMPLE_BRACES: "Host user: ${USER}" + EXAMPLE_COLON_DASH_DEFAULT: ${NOT_A_VARIABLE:-My default} + EXAMPLE_DASH_DEFAULT: ${NOT_A_VARIABLE-My other default} + EXAMPLE_DOT_ENV: $DOT_ENV_VARIABLE + EXAMPLE_LITERAL: This is a $$literal + EXAMPLE_EMPTY: $NOT_A_VARIABLE +