Karol Musur
Karol Musur
This timeout is caused by Docker container IPs being not reachable on macOS. > Per-container IP addressing is not possible > The docker (Linux) bridge network is not reachable from...
I managed to fix the timeout error by patching `sebs/storage/minio.py`: ```diff diff --git a/sebs/storage/minio.py b/sebs/storage/minio.py index 6c79f05..d2f12c4 100644 --- a/sebs/storage/minio.py +++ b/sebs/storage/minio.py @@ -115,7 +115,7 @@ class Minio(PersistentStorage): def get_connection(self):...
Hi, so it crashes when you use `to ` command? Is it nondeterministic, or happens for particular directories?
I designed it this way, because a user doesn't always know if the branch has a corresponding PR or is even present on the remote. Seeing this message means the...
Does it happen during the deployment, or after the deployment?
Can you share the docker compose file?
I think you need to change `restart: always` to `restart: unless-stopped`, because your containers are restarted when docker-rollout tries to stop them. `restart: unless-stopped` gives you the same auto healing...
@fikrapdso, if I understand the problem correctly, you have a container that crashes after starting, so you are not able to deploy new image version using `docker rollout`. Is that...
Thats a useful insight, thanks! We should describe the requirements for sleep in docs if we go for the hooks solution, or wait a required time in docker-rollout itself. Docker...
Hi, I've considered implementing that behavior, but it has a few problems: - Not all services can be updated with docker-rollout, e.g. services having a port mapping or `container_name` defined....