If .ducker.yaml file has been created by other system. UID and GID might be different which leads to build the docker container with wrong UID and GID.
Solution
Get rid of --build-arg UID and --build-arg GID inside of .ducker.yaml and add them inside of ducker build command.
If this feature is implemented, manual UID and GID should also be possible.
Problem
If
.ducker.yaml
file has been created by other system. UID and GID might be different which leads to build the docker container with wrong UID and GID.Solution
Get rid of
--build-arg UID
and--build-arg GID
inside of.ducker.yaml
and add them inside of ducker build command.