podman-compose/tests/env-file-tests/README.md
nathanael.noblet 935029dc33 Fix environment variable precedents
Per https://docs.docker.com/compose/environment-variables/envvars-precedence/#advanced-example

Signed-off-by: nathanael.noblet <nathanael.noblet@willowglensystems.com>
2024-06-22 19:58:02 +03:00

743 B

running the following commands should always give podman-rocks-123

podman-compose -f project/container-compose.yaml --env-file env-files/project-1.env up
podman-compose -f $(pwd)/project/container-compose.yaml --env-file $(pwd)/env-files/project-1.env up
podman-compose -f $(pwd)/project/container-compose.env-file-flat.yaml up
podman-compose -f $(pwd)/project/container-compose.env-file-obj.yaml up
podman-compose -f $(pwd)/project/container-compose.env-file-obj-optional.yaml up

based on environment variable precedent this command should give podman-rocks-321

ZZVAR1=podman-rocks-321 podman-compose -f $(pwd)/project/container-compose.yaml --env-file $(pwd)/env-files/project-1.env up