diff options
Diffstat (limited to 'tests/instrumentation/docker-compose.yml')
-rw-r--r-- | tests/instrumentation/docker-compose.yml | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/tests/instrumentation/docker-compose.yml b/tests/instrumentation/docker-compose.yml new file mode 100644 index 0000000..6a112bb --- /dev/null +++ b/tests/instrumentation/docker-compose.yml @@ -0,0 +1,22 @@ +version: '3.4' +services: + dovecot: + image: dovecot/dovecot:2.3.19.1 + 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" |