Triple-quoting for Docker bash entrypoint
I have a Dockerfile with ENTRYPOINT ["/bin/bash", "--login", "-c"]. I am having trouble with triple-quoting. None of the following commands to Docker work: "echo 'New York\'s Finest'" "echo 'New York\'s Finest'" "echo 'New York's Finest'" 'echo "New York\'s Finest"' 'echo…