evenco/sqs

By evenco

Updated almost 6 years ago

Simple fake SQS server

Image
0

10K+

Docker Fake SQS

Docker Pulls

Dockerized Fake SQS.

Running

Simply run the container:

docker run -it -p 4568:4568 evenco/fake-sqs

Or, from docker-compose.yml:

services:
  sqs:
  image: evenco/fake-sqs
  ports:
    - 4568

Configurations

The majority of configurations are set to sane defaults for use within Docker, however, the following environment variables are available:

  • SERVER: Server to use (thin, mongrel or webrick)
  • DATABASE: Where to store the database (:memory:, ./path/to/database.yml)

Note: The SERVER defaults to thin, as webrick attempts to do reverse dns lookups on every request which slows down the service drastically. There is a setting to override this within webrick, but sinatra does not allow server-specific setttings to be passed down.

Docker Pull Command

docker pull evenco/sqs