Does anybody already use mutagen 0.15.0 for docker...
# docker
s
Does anybody already use mutagen 0.15.0 for docker/macos development? For me it is very unreliable in comparison to 0.14. Files/directories are often not synced at all. Problem: I wasn't able to downgrade so far šŸ™ˆ Any tipps?
Copy code
āžœ  ~ mutagen-compose version
Mutagen version 0.15.0
Compose version v2.6.0
Docker version v20.10.12
i
Still on 0.14 I`ve saved a workaround shared earlier here for downgrading mutagen:
Copy code
cd "$(brew --repo mutagen-io/homebrew-mutagen)" && \
git checkout bd8b45734ceebb24a9b11cbae7ff9f1623cfb737 && \
HOMEBREW_NO_AUTO_UPDATE=1 brew install mutagen-io/mutagen/mutagen-beta && \
mutagen daemon stop  && \
mutagen daemon start && \
You should change commit hash and remove beta reference to match version 0.14 Good luck! šŸ˜‰
thankyou 1
s
You. Are. Awesome šŸ‘Œ Looks like it working to get the latest 0.14.x (incl mutagen-compose) with the following command:
Copy code
cd "$(brew --repo mutagen-io/homebrew-mutagen)" && \
git checkout 814fdf7ead2c48d1f79227cd7e972deb038cf4be && \
HOMEBREW_NO_AUTO_UPDATE=1 brew install mutagen-io/mutagen/mutagen && \
HOMEBREW_NO_AUTO_UPDATE=1 brew install mutagen-io/mutagen/mutagen-compose && \
mutagen daemon stop  && \
mutagen daemon start
... and I would recommend to pin the packages to their versions:
Copy code
āžœ  ~ brew pin mutagen
āžœ  ~ brew pin mutagen-compose
šŸ‘ 1
p
Btw, the owner of mutagen is very active here: https://join.slack.com/t/mutagen-io/shared_invite/zt-1dy3ayn5f-xnuGrZmyUMkm4BvL78A1ig - if you want to report it or give feedback^^