Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/graze/docker-sqs-local
Docker image with an SQS-compatible queue implementation for local development
https://github.com/graze/docker-sqs-local
docker docker-image sqs
Last synced: about 2 months ago
JSON representation
Docker image with an SQS-compatible queue implementation for local development
- Host: GitHub
- URL: https://github.com/graze/docker-sqs-local
- Owner: graze
- License: mit
- Created: 2017-10-24T14:55:35.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2021-07-07T09:07:22.000Z (over 3 years ago)
- Last Synced: 2023-08-01T11:07:29.529Z (over 1 year ago)
- Topics: docker, docker-image, sqs
- Language: Dockerfile
- Size: 3.91 KB
- Stars: 6
- Watchers: 7
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Docker SQS-compatible image
Docker image containing an SQS-compatible queue implementation ([ElasticMQ](https://github.com/adamw/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 config stored in the image.
```
docker run -p 9324:9324 -v "$PWD/elasticmq.conf:/elasticmq.conf" graze/sqs-local
```### Multiarch
This allows you to run the image on various architectures. The recommendation would be to use this if you're trying to run this on an Apple M1.
```
docker run -p 9324:9324 graze/sqs-local:multiarch
```## Using `docker-compose`
```
services:
sqs:
image: graze/sqs-local
ports:
- 9324:9324
volumes:
- ./elasticmq.conf:/elasticmq.conf
```### Multiarch
If you want to use the multiarch image in your docker-compose file then
```
services:
sqs:
image: graze/sqs-local:multiarch
ports:
- 9324:9324
volumes:
- ./elasticmq.conf:/elasticmq.conf
``````
docker-compose up sqs
```