Docker files for auth0/limitd, a simple daemon for rate limiting.
docker run -d --name limitd saidimu/limitd-docker:latest
This will run limitd in the background, using the example limitd.yml.
To see the container logs docker logs limitd:
{"name":"limitd","hostname":"3f05b557147a","pid":7,"level":20,"address":"0.0.0.0","family":"IPv4","port":9001,"msg":"server started","time":"2015-03-25T15:08:51.271Z","v":0}
Data will be persisted within the container. If you delete the container the data disappears as well.
The Dockerfile mounts a volume on /data that can be used from a different data container.
docker run -d -v /data --name limitd_data saidimu/limitd-docker:latest true
limitd_data in the limitd container:docker run -d --volumes-from limitd_data --name limitd saidimu/limitd-docker:latest
Content type
Image
Digest
sha256:e1be8f2f4…
Size
283.6 MB
Last updated
almost 11 years ago
docker pull saidimu/limitd-docker