Skip to content

bvinnerd/docker-sqs-local

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Docker SQS-compatible image

Docker image containing an SQS-compatible queue implementation (ElasticMQ) for offline development of software that uses SQS.

Running

Using docker

docker run -p 9324:9324 graze/sqs-local

You can use a custom conf file as well to override the confih stored in the image.

docker run -p 9324:9324 -v "$PWD/elasticmq.conf:/elasticmq.conf" graze/sqs-local

Using docker-compose

services:
  sqs:
    image: graze/sqs-local
    ports:
      - 9324:9324
    volumes:
      - ./elasticmq.conf:/elasticmq.conf
docker-compose up sqs

About

Docker image with an SQS-compatible queue implementation for local development

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published