summaryrefslogtreecommitdiff
path: root/tests/env/docker-compose.yaml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/env/docker-compose.yaml')
-rw-r--r--tests/env/docker-compose.yaml39
1 files changed, 39 insertions, 0 deletions
diff --git a/tests/env/docker-compose.yaml b/tests/env/docker-compose.yaml
new file mode 100644
index 00000000..4f58d543
--- /dev/null
+++ b/tests/env/docker-compose.yaml
@@ -0,0 +1,39 @@
+version: '3.8'
+
+services:
+ memcached:
+ image: memcached:latest
+ ports:
+ - "127.0.0.1:11211:11211"
+ redis:
+ image: redis:6
+ ports:
+ - "127.0.0.1:6379:6379"
+ redis2:
+ image: redis:6
+ ports:
+ - "127.0.0.1:6378:6379"
+
+ toxicproxy:
+ image: shopify/toxiproxy
+ network_mode: "host"
+
+ beanstalk:
+ build:
+ context: .
+ dockerfile: Dockerfile-beanstalkd.yaml
+ ports:
+ - "127.0.0.1:11300:11300"
+
+ sqs:
+ build:
+ context: .
+ dockerfile: Dockerfile-elastic-mq.yaml
+ ports:
+ - "127.0.0.1:9324:9324"
+
+ rabbitmq:
+ image: rabbitmq:3-management
+ ports:
+ - "127.0.0.1:15672:15672"
+ - "127.0.0.1:5672:5672"