ymage

Results 9 comments of ymage

I understand. My point is : when you set some boolean vars as **False**, they are processed as "if it is set, it must be **True**" which is really disturbing...

What do you think about the opposite default ? Something like this : ```COLOR_LOG = os.environ.get("COLOR_LOG", 'False').lower() not in ('false', '0', 'f')```

I am stuck with this issue. I just can't convert my previous transactions from EUR to USD looking for each of them the conversion rate from the past

Can you give it a try and take a look ?

I tried to use https://index.docker.io/v1/ instead of **v2** one as docker registry url, which seemed to work for me. Is v2 endpoint really suported by kaniko ?

This seems to work for docker hub : ```shell $ export DOCKERHUB_AUTH="$(echo -n $DOCKER_HUB_REPOSITORY_USERNAME:$DOCKER_HUB_REPOSITORY_PASSWORD | base64)" $ echo "{\"auths\":{\"https://index.docker.io/v1/\":{\"auth\":\"${DOCKERHUB_AUTH}\"}}}" > docker.json $ docker run --rm -v $(pwd):/workspace -v $(pwd)/docker.json:/kaniko/.docker/config.json:ro gcr.io/kaniko-project/executor:v0.22.0...

This seems to be an issue still, sorry for bringing it up again :) [4]

The issue is that to perform a 'chown', the container must be run with root privileges at startup. Any solution using PUID/PGID as an environment variable cannot work if the...

If I understand correctly, the container starts with the node user, who then changes its own UID and GID? Is it really possible to change one's own UID and GID...