mirror of
https://github.com/containers/podman-compose.git
synced 2025-08-17 17:11:21 +02:00
Move all tests to single directory "tests"
Signed-off-by: Povilas Kanapickas <povilas@radix.lt>
This commit is contained in:
5
tests/integration/env-tests/README.md
Normal file
5
tests/integration/env-tests/README.md
Normal file
@ -0,0 +1,5 @@
|
||||
running the following command should give myval2
|
||||
|
||||
```
|
||||
podman_compose run -l monkey -e ZZVAR1=myval2 env-test
|
||||
```
|
9
tests/integration/env-tests/container-compose.yml
Normal file
9
tests/integration/env-tests/container-compose.yml
Normal file
@ -0,0 +1,9 @@
|
||||
version: '3'
|
||||
|
||||
services:
|
||||
env-test:
|
||||
image: busybox
|
||||
command: sh -c "export | grep ZZ"
|
||||
environment:
|
||||
- ZZVAR1=myval1
|
||||
|
Reference in New Issue
Block a user