Script reports container restart failure erroneously #6
Loading…
Reference in New Issue
Block a user
No description provided.
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Thx to Ry3nlNaToR on github for pointing this out:
The script reports error 103 and 104 even though the postfix and dovecot containers, respectively, have been restarted successfully.
Problem is that the script checks container names based on
docker ps ...
which does NOT list stopped containers! Solution: usedocker ps -a ...
Resolved: commit
04bc748816