diff --git a/docker-compose.yaml b/docker-compose.yaml
new file mode 100644
index 0000000000000000000000000000000000000000..c96ce187e59929db47b9d87d47059665f1f5e383
--- /dev/null
+++ b/docker-compose.yaml
@@ -0,0 +1,21 @@
+version: '2'
+services:
+   angular:
+      build: ./TourOfHeroes
+      image: angular:prod
+      volumes:
+         - ./TourOfHeroes
+      ports:
+         - "85:85"
+      environment:
+         DEBUG: "true"
+   django-rest:
+      build: ./tutorial
+      image: django-rest:prod
+      command: python manage.py runserver
+      volumes:
+         - ./tutorial
+      ports:
+         - "8000:8000"
+      environment:
+         DEBUG: "true"