I have this docker command for mac os:
docker run --name digital-contracts-phpmyadmin -p 4599:80 -v $(pwd)/phpmyadmin/config.user.inc.php:/etc/phpmyadmin/config.user.inc.php -v $(pwd)/phpmyadmin/config.user.extra.php:/etc/phpmyadmin/config.user.extra.php --network digital-contracts-mysql-net -d phpmyadmin/phpmyadmin
however when i run it on windows os on command prompt (cmd.exe), i get this error:
docker: Error response from daemon: create $(pwd)/phpmyadmin/config.user.inc.php: "$(pwd)/phpmyadmin/config.user.inc.php" includes invalid characters for a local volume name, only "[a-zA-Z0-9][a-zA-Z0-9_.-]" are allowed. If you intended to pass a host directory, use absolute path.
Please help me modify the command to run it successfully on windows os
thanks!