Files
podman-compose/tests/integration/env_tests/container-compose.yml
Povilas Kanapickas 58df8497aa Move tests to directories that can be imported
Signed-off-by: Povilas Kanapickas <povilas@radix.lt>
2025-05-24 16:47:49 +03:00

19 lines
331 B
YAML

version: "3"
name: my-project-name
services:
env-test:
image: busybox
command: sh -c "export | grep ZZ"
environment:
ZZVAR1: myval1
ZZVAR2: 2-$ZZVAR1
ZZVAR3: 3-$ZZVAR2
project-name-test:
image: busybox
command: sh -c "echo $$PNAME"
environment:
PNAME: ${COMPOSE_PROJECT_NAME}