Skip to content
This repository has been archived by the owner on Mar 1, 2025. It is now read-only.

Latest commit

 

History

History
39 lines (38 loc) · 815 Bytes

README.md

File metadata and controls

39 lines (38 loc) · 815 Bytes

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