If, when doing something like docker-compose up, you run into an error like this:
ERROR: Named volume "server/db:/usr/share/nginx/html/db:rw" is used in service "web" but no declaration was found in the volumes section.
You're missing a leading ./, so, for example:
volumes:
- 'server/db:/usr/share/nginx/html/db'