Simpleservices
Compare changes
Files
2+ 23
− 2
@@ -10,6 +10,10 @@ python3 movies.py
@@ -21,6 +25,10 @@ python3 showtimes.py
@@ -47,11 +55,24 @@ $ curl 127.0.0.1:5002/showtimes/20151130
>Try your best to solve it. If you need hints, you will find the solution for this in the branch `simpleservices`, which you can obtain by running `git checkout simpleservices`. Note that after checking out this branch, you will have to start both the `movies` and `showtimes` microservices and then issue the curl request. The showtimes microservice will talk to movies microservice to deliver the final result.
> Your next task is to wrap these microservices as a docker image and make them portable. Essentially, this involves specifying all the dependencies and running parameters explicitly in a `Dockerfile`. You can have a go at this by copying from this [tutorial](https://www.docker.com/blog/containerized-python-development-part-1/). Or, switch to the `dockerservices` branch where you will find the solution for steps 3 and 4.