forked from extern/podman-compose
Test variable interpolation in the YAML
This commit is contained in:
parent
080b8a369e
commit
2ad7daa81f
@ -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}
|
||||
|
8
tests/interpolation/docker-compose-question-error.yml
Normal file
8
tests/interpolation/docker-compose-question-error.yml
Normal file
@ -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}
|
||||
|
14
tests/interpolation/docker-compose.yml
Normal file
14
tests/interpolation/docker-compose.yml
Normal file
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user