frankenphp-drupal
frankenphp-drupal copied to clipboard
How to expose the source code inside the docker container to the host?
After following the instruction, I can access the web in localhost but I can't see the source code in the host machine. I can only access it inside the PHP docker container.
So how to expose the source code inside the docker container to the host? So I can edit it in development env?
Usually, I use the volume like this in PHP container - .:/opt/drupal, but it doesn't work in this case
Hi @HuyNguyen206, in the docker image the work directory is /app, maybe it would work if you switch to a volume like :
volumes:
- .:/app:cached
EDIT: Oh sorry you're right, I am using the base dunglas/frankenphp:1-php8.3 as upstream.
@Renrhaf As I checked in dockerfile, the WORKDIR is /opt/drupal, not /app. Even though, it doesn't work
volumes:
- .:/opt/drupal:cached
hi @dunglas , could you help me to solve this issue? Maybe I am missing some configuration related to docker but I am not sure. Thank you in advanced.