An open API service indexing awesome lists of open source software.

https://github.com/realies/sqs-insight-docker

🐳 SQS Insight Simple Queue Service Web Interface Docker Container
https://github.com/realies/sqs-insight-docker

aws aws-sqs insight sqs sqs-consumer sqs-interface sqs-queue ui web

Last synced: 4 months ago
JSON representation

🐳 SQS Insight Simple Queue Service Web Interface Docker Container

Awesome Lists containing this project

README

        

## Typical Usage

##### Using Docker CLI
```
docker run -d --name sqs-insight \
-e mode=endpoint \
-e key=notValidKey \
-e secretKey=notValidSecret \
-e region=us-east-1 \
-e url=http://sqs.amazonaws.com/my-user/my-queue \
-e visibility=0 \
-p 3000:3000 \
realies/sqs-insight
```
or
```
docker run -d --name sqs-insight \
-e mode=dynamicEndpoint \
-e key=notValidKey \
-e secretKey=notValidSecret \
-e region=us-east-1 \
-e url=http://sqs.amazonaws.com/ \
-e visibility=0 \
-p 3000:3000 \
realies/sqs-insight
```
or
```
docker run -d --name sqs-insight \
-v "$(PWD)"/config_local.json:/sqs-insight/config/config_local.json \
-p 3000:3000 \
realies/sqs-insight
```
##### Using Docker Compose
```
curl -fL# https://raw.githubusercontent.com/eficode/wait-for/master/wait-for -O
chmod +x wait-for
docker-compose up
```