-
Notifications
You must be signed in to change notification settings - Fork 535
Open
Description
The following docker-compose.yml
file is a valid file for docker-compose
:
version: '3.8'
services:
redis:
image: "redis:alpine"
redis-2:
image: "redis:alpine"
Both containers become available and ready. No ports are exposed to the outside.
However, podman-compose
fails to properly execute the above configuration because redis
and redis-2
require identical ports.
The following configuration encounters the same problem:
version: '3.8'
services:
redis:
image: "redis:alpine"
deploy:
replicas: 2
Containers should be internally isolated from each other, and should not require unique internal ports.
Metadata
Metadata
Assignees
Labels
No labels