So I'm running Ubuntu 20.04 under WSL2 with Docker. Occasionally the files mounted by Docker (could be other files as well) are getting their ownership changed from my user to systemd-network:systemd-journal
(or in uid format 100:101
).
It's a relatively straightforward fix of sudo chown <user>:<user> . -R
, but I'd rather figure out what causes this issue and stop it.
I'm currently unsure if it's caused by the Docker Container, Docker itself, Ubuntu 20.04 or something funky with WSL2.
I've never had this issue before with these Docker Containers in different environments...