You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Since we don't have health checks yet either (see #866, #23 and #921) I was going to work around that by running
podman compose up -d service1
while [ "$(podman compose ps -f json | jq '.[] | select(.Labels."com.docker.compose.service"=="service1").Status | contains("healthy")')" == "false" ]; do
:
done
podman compose up -d service2
However, this issue prevents that as well. Seems the only options would be to have 2 separate compose files and use the script workaround or drop podman-compose and switch to docker-compose instead (which I'd been hoping to avoid).
error adding pod to state: name root is in use: pod already exists
version: "2"
services:
s1:
hostname: s1
.....
s2:
hostname: s2
.....
The text was updated successfully, but these errors were encountered: