https://shippingdocker.com/docker-in-development/up-and-running/ references the path /opt
# Scaffold authentication views/routes
docker run -it --rm \
-v $(pwd)/application:/opt \
-w /opt \
--network=phpapp_appnet \
shippingdocker/php \
php artisan make:auth
but the docker_compose file https://github.com/shipping-docker/php-app/blob/master/docker-compose.yml references /var/www/html
so when I change the example commands to that it then works?
docker run -it --rm \
-v $(pwd)/application:/var/www/html \
-w /var/www/html \
are one of these out of date or am I just missing the obvious :) thanks
https://shippingdocker.com/docker-in-development/up-and-running/ references the path /opt
but the docker_compose file https://github.com/shipping-docker/php-app/blob/master/docker-compose.yml references
/var/www/htmlso when I change the example commands to that it then works?
are one of these out of date or am I just missing the obvious :) thanks