aboutsummaryrefslogtreecommitdiff
path: root/tests/instrumentation/docker-compose.yml
blob: 67a543a555d3e6d044e7e260655434100c631726 (plain) (blame)
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
version: '3.4'
services:
  dovecot:
    image: dovecot/dovecot:2.3.21
    ports:
      - "993:993/tcp"

  maddy:
    build:
      context: ./docker/maddy/
    image: maddy
    ports:
      - "994:993/tcp"

  cyrus:
    build:
      context: ./docker/cyrus/
    image: cyrus
    volumes:
      - "/dev/log:/dev/log"
    ports:
      - "143:143/tcp"

  courier:
    build:
      context: ./docker/courier/
    image: courier
    ports:
      - "144:143/tcp"