I am working on a Drupal 8 theme where there are some color preview features where my logo should appear. This is done via my preview.html file where the following is inserted:
<div class="color-preview-logo"><img src="./../logo.svg" alt="Site Logo" />
</div>
Everything works fine on my Ubuntu servers, but how do I make it work via DDEV? I have the feeling that I must have made some kind of mount, but I have no idea how to do it.
Edit: I have now tried the following docker mount command:
docker run --name logo -it --rm -v /Users/soren/Sites/drupal/unitynet.dk/web/themes/custom/jazzy_theme/logo.svg:/
But I can not really make it work. The command gives the following message: "docker run" requires at least 1 argument.
I think I followed the example from this: https://docs.docker.com/storage/bind-mounts/
What am I missing?