aboutsummaryrefslogtreecommitdiff
path: root/tests/instrumentation/docker-compose.yml
diff options
context:
space:
mode:
authorQuentin Dufour <quentin@deuxfleurs.fr>2023-12-27 18:33:06 +0100
committerQuentin Dufour <quentin@deuxfleurs.fr>2023-12-27 18:33:06 +0100
commitccc9b6abb66ebda0b91b4e21f8ec2fb2e87390f7 (patch)
tree985f9d136a981ec7cc43984c976c60e9295340d5 /tests/instrumentation/docker-compose.yml
parent7744625c18aff5990a792bb13a44b60d8c4d4fc5 (diff)
downloadaerogramme-ccc9b6abb66ebda0b91b4e21f8ec2fb2e87390f7.tar.gz
aerogramme-ccc9b6abb66ebda0b91b4e21f8ec2fb2e87390f7.zip
add a --dev mode
Diffstat (limited to 'tests/instrumentation/docker-compose.yml')
-rw-r--r--tests/instrumentation/docker-compose.yml22
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"