We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Is it an easy way to edit permissions to edit from the host?
I tried this on my Dockerfile but it is not working:
Dockerfile
RUN groupadd -g 1000 www RUN useradd -u 1000 -ms /bin/bash -g www www # src is where all my code lives. COPY --chown=www:www src /usr/share/nginx/html
As soon as the image starts all the files change to this:
Running this image on the server works perfectly. If it's possible I would like to use the same image on my development workflow too.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Is it an easy way to edit permissions to edit from the host?
I tried this on my
Dockerfile
but it is not working:As soon as the image starts all the files change to this:
Running this image on the server works perfectly. If it's possible I would like to use the same image on my development workflow too.
The text was updated successfully, but these errors were encountered: