/docker-cors-anywhere

Primary LanguageJavaScriptMIT LicenseMIT

cors-anywhere image

This image packages cors-anywhere so you can send any request to any machine through this. Can be used as a simple proxy.

docker run --restart always -d --name cors-anywhere -p 30080:80 yasinuslu/cors-anywhere

You can send a request with it like following:

curl --request GET \
  --url http://localhost:30080/http://example.com \
  --header 'origin: *'