π 2017-Jul-21 ⬩ βοΈ Ashwin Nanjappa ⬩ π·οΈ docker ⬩ π Archive
Once you run a Docker container using docker run
and get a shell inside it, you can set the file creation mode mask there with the umask
command of the shell. This is usually 0022
and you can set it to whatever you want. All consecutive operations at the shell and child processes forked from the shell will have with umask.
What if you donβt want to manually type this umask command, but want it set automatically in the container?
Note that there is no way to do this directly in the Dockerfile. You can have a RUN umask 0002
command in the Dockerfile, but that does not have any effect for when you run the container.
You might think you can set this in the command that is passed at the end of a docker run like this:
$ docker run -it --rm some_image "umask 0000; /bin/bash"
This does not work either. The umask is back to the normal one in the shell. There is no other way to specify umask directly in a docker run as discussed here.
$ cat set_umask.sh
#!/bin/bash
umask 0002
/bin/bash
To be able to run this script when the container is run, we first need to make this executable:
$ chmod +x set_umask.sh
Next we add commands to the Dockerfile to copy this into the image and make the script as the entry point:
COPY set_umask.sh set_umask.sh
ENTRYPOINT ["./set_umask.sh"]
Build the container and run it and see your umask already enabled at the shell!