mirror of
https://github.com/containers/podman-compose.git
synced 2025-08-03 11:47:33 +02:00
20 lines
377 B
YAML
20 lines
377 B
YAML
version: "3"
|
|
volumes:
|
|
web1_vol:
|
|
web2_vol:
|
|
services:
|
|
web1:
|
|
image: podman-compose-up-down-test
|
|
build: .
|
|
hostname: web1
|
|
command: ["dumb-init", "sleep", "infinity"]
|
|
volumes:
|
|
- web1_vol:/mnt/test/
|
|
web2:
|
|
image: docker.io/library/debian:up-down-test
|
|
hostname: web2
|
|
command: ["sleep", "infinity"]
|
|
volumes:
|
|
- web2_vol:/mnt/test/
|
|
|