I need to update tinyproxy.conf file
Hi, I need to enable basic Auth. but i am not able to find file tinyproxy.conf. Can you help to the file location so that i can enable basic Auth.
/etc/tinyproxy/tinyproxy.conf
I've updated the docker-compose.yml, please check it out.
https://github.com/vimagick/dockerfiles/tree/master/tinyproxy
okay. now I need to build image by command docker build -t tinyproxy . will it take my new configuration . I mean if will change the configuration file then it will reflect in new docker image? Thanks.
When you run the container, you can use the -v option to mount a volume.
See: https://docs.docker.com/storage/volumes/
For example:
docker run -v /path/to/your/tinyproxy.conf:/etc/tinyproxy/tinyproxy.conf ...
I am going to use this image to run Azure container instance . how will this work on azure container. ?
Sorry, I'm not familiar with Azure.
so there is no option to attach updated configuration file (tinyproxy.conf) along with image ?
Thanks . there is option to mount a volume in azure container.