Skip to content

Commit

Permalink
sqs
Browse files Browse the repository at this point in the history
  • Loading branch information
noud committed Sep 19, 2020
1 parent 9a9a954 commit 27585c5
Show file tree
Hide file tree
Showing 4 changed files with 27 additions and 0 deletions.
1 change: 1 addition & 0 deletions DOCUMENTATION/content/introduction/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -134,6 +134,7 @@ That's it! enjoy :)
- PHP Worker
- Laravel Horizon
- Gearman
- Amazon Simple Queue Service
- **Mail Servers:**
- Mailu
Expand Down
14 changes: 14 additions & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -663,6 +663,20 @@ services:
networks:
- backend

### SQS #############################################
sqs:
build: ./sqs
ports:
- "${SQS_NODE_HOST_PORT}:9324"
- "${SQS_MANAGEMENT_HTTP_HOST_PORT}:9325"
privileged: true
hostname: laradock-sqs
volumes:
- ${DATA_PATH_HOST}/sqs:/opt/custom
networks:
- frontend
- backend

### RabbitMQ #############################################
rabbitmq:
build: ./rabbitmq
Expand Down
5 changes: 5 additions & 0 deletions env-example
Original file line number Diff line number Diff line change
Expand Up @@ -365,6 +365,11 @@ POSTGRES_PASSWORD=secret
POSTGRES_PORT=5432
POSTGRES_ENTRYPOINT_INITDB=./postgres/docker-entrypoint-initdb.d

### SQS ##############################################

SQS_NODE_HOST_PORT=9324
SQS_MANAGEMENT_HTTP_HOST_PORT=9325

### RABBITMQ ##############################################

RABBITMQ_NODE_HOST_PORT=5672
Expand Down
7 changes: 7 additions & 0 deletions sqs/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
FROM roribio16/alpine-sqs

LABEL maintainer="Ronald E. Oribio R. https://github.com/roribio"

ENTRYPOINT ["bash", "-c", "/usr/bin/supervisord"]

EXPOSE 9324 9325

0 comments on commit 27585c5

Please sign in to comment.