PHP Classes

File: docker-compose.yml

Recommend this page to a friend!
  Classes of Nguyen Duc Thuan   AWS SQS Wrapper   docker-compose.yml   Download  
File: docker-compose.yml
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: AWS SQS Wrapper
Publish and subscribe message queues using AWS SQS
Author: By
Last change:
Date: 5 years ago
Size: 994 bytes
 

Contents

Class file image Download
version: '3' services: localstack: image: localstack/localstack:0.8.7 environment: - SERVICES=sqs:4576 composer: image: composer:1 command: tail -f /dev/null volumes: - $HOME/.composer:/root/.composer - .:/app working_dir: /app php70: image: php:7.0-cli command: tail -f /dev/null volumes: - .:/app working_dir: /app depends_on: - localstack php71: image: php:7.1-cli command: tail -f /dev/null volumes: - .:/app working_dir: /app depends_on: - localstack php72: image: php:7.2-cli command: tail -f /dev/null volumes: - .:/app working_dir: /app depends_on: - localstack netcat: image: appropriate/nc volumes: - .:/app working_dir: /app depends_on: - localstack command: tail -f /dev/null awscli: image: garland/aws-cli-docker:1.15.47 depends_on: - localstack command: tail -f /dev/null