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: 9 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
- Archived: true
- Created: 2018-11-28T15:04:37.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2025-03-01T02:35:40.000Z (over 1 year ago)
- Last Synced: 2025-03-01T03:23:22.882Z (over 1 year 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
```