If an application is running inside a docker and wants to write to /etc/nginx/conf.d
directory of host OS, how could I pass on this instruction in the docker-compose
file? SO whenever an attempt to write to /etc/nginx/conf.d
is made, it writes into the file of the host OS
This is how my docker-compose.yml looks right now
myapp:
container_name: myapp
restart: always
build: .
ports:
- "3001:3001"