mirror of
https://github.com/containers/podman.git
synced 2025-12-09 15:19:35 +08:00
to prevent any regressions, we should be running regression tests using compose. Signed-off-by: baude <bbaude@redhat.com>
19 lines
268 B
YAML
19 lines
268 B
YAML
version: '3'
|
|
services:
|
|
writer:
|
|
environment:
|
|
- PODMAN_MSG=podman_rulez
|
|
build: write
|
|
ports:
|
|
- '5000:5000'
|
|
volumes:
|
|
- data:/data
|
|
reader:
|
|
build: read
|
|
ports:
|
|
- '5001:5000'
|
|
volumes:
|
|
- data:/data
|
|
volumes:
|
|
data:
|