"Print Working Directory" (PWD) is a `current` working folder. It is often used for do a relative path manipulation.
[Docker Volumes](https://docs.docker.com/storage/volumes/) (`docker run -v ...`) are used to bring data content (files) inside a docker container.
The challenge in using volumes is that the behavior of current working directory (pwd) depends on your shell / terminal and your operation system.
Start of a `apache based php server` with an image from [docke…