mirror of
https://github.com/containers/podman-compose.git
synced 2025-02-10 23:39:39 +01:00
10 lines
256 B
YAML
10 lines
256 B
YAML
|
version: "3"
|
||
|
services:
|
||
|
container1:
|
||
|
image: nopush/podman-compose-test
|
||
|
command: ["/bin/bash", "-c", "echo test1; sleep infinity"]
|
||
|
container2:
|
||
|
image: nopush/podman-compose-test
|
||
|
restart: never
|
||
|
command: ["/bin/bash", "-c", "echo test2"]
|