I have a started container gigantic_booth
and I want to create the directory /etc/test
:
# docker exec -it gigantic_booth /bin/bash
$ mkdir /etc/test
$ mkdir: cannot create directory '/etc/test': Permission denied
And sudo
command is not found. I don't want to create this directory in image-build-time but once is started.
How can I do?
Thanks :)