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
- Host: GitHub
- URL: https://github.com/realies/sqs-insight-docker
- Owner: realies
- License: mit
- Created: 2018-11-28T15:04:37.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2019-10-11T18:29:56.000Z (over 5 years ago)
- Last Synced: 2024-11-13T02:33:04.751Z (6 months ago)
- Topics: aws, aws-sqs, insight, sqs, sqs-consumer, sqs-interface, sqs-queue, ui, web
- Language: Shell
- Homepage: https://hub.docker.com/r/realies/sqs-insight/
- Size: 5.86 KB
- Stars: 1
- Watchers: 2
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
```