summaryrefslogtreecommitdiff
path: root/tests/env/docker-compose.yaml
blob: dc91e7b67ef5be55aeb0c9eaaced370fca451131 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
version: '3.8'

services:
  memcached:
    image: memcached:latest
    ports:
      - "0.0.0.0:11211:11211"
  redis:
    image: redis:6
    ports:
      - "6379:6379"
  redis2:
    image: redis:6
    ports:
      - "6378:6379"

  toxicproxy:
    image: shopify/toxiproxy
    network_mode: "host"

  beanstalk:
    build:
      context: .
      dockerfile: Dockerfile-beanstalkd.yaml
    ports:
      - "11300:11300"

  sqs:
    build:
      context: .
      dockerfile: Dockerfile-elastic-mq.yaml
    ports:
      - "9324:9324"

  rabbitmq:
    image: rabbitmq:3-management
    ports:
      - "15672:15672"
      - "5672:5672"