This repo is a simple application to list student with a webserver (PHP) and API (Flask)
The objectives of this practice exam are to ensure that you are able to manage a docker infrastructure, so you will be evaluated about the following
- improve an existed application deployment process
- versioning your infrastructure release
- address best practice when implementing docker infrastructure
- Infrastructure As Code
POZOS is an IT company located in France and develops software for High School.
The innovation department want to disrupt the existing infrastructure to ensure that
it can be scalable, easily deployed with a maximum of automation.
POZOS wants you to build a POC to show how docker can help you and how much this technology is efficient.
For this POC, POZOS will give you an application and want you to build a "decouple" infrastructure based on Docker.
Currently, the application is running on a single server with any scalability and any high availability.
When POZOS needs to deploy a new release, every time some goes wrong.
In conclusion, POZOS needs agility on its software farm.
For this POC, you will only use one single machine with a docker installed on it.
The build and the deployment will be made on this machine.
POZOS recommends you to use centos7.6 OS because it's the most used in the company.
Please also note that you are authorized to use a virtual machine base on Centos7.6 and not your physical machine.
The security is a very critical aspect of POZOS DSI so please do not disable the firewall or other security mechanisms otherwise please explain your reasons in your delivery.
The application that you will be working on is named "student_list", this application is very basic and enables POZOS to show the list of the student with their age.
student_list has two modules:
- the first module is a REST API (with basic authentication needed) who send the desire list of the student based on JSON file
- The second module is a web app written in HTML + PHP who enable end-user to get a list of students
Your work is to build one container for each module an make them interact with each other
Application source code can be found here
The files that you must provide (in your delivery) are Dockerfile and docker-compose.yml (currently both are empty)
Now it is time to explain you each file's role:
- docker-compose.yml: to launch the application (API and web app)
- Dockerfile: the file that will be used to build the API image (details will be given)
- student_age.json: contain student name with age on JSON format
- student_age.py: contains the source code of the API in python
- index.php: PHP page where end-user will be connected to interact with the service to - list students with age. You need to update the following line before running the website container to make api_ip_or_name and port fit your deployment
$url = 'http://<api_ip_or_name:port>/pozos/api/v1.0/get_student_ages';
POZOS will give you information to build the API container
- Base image
To build API image you must use "python:2.7-stretch"
- Maintainer
Please don't forget to specify the maintainer information
- Add the source code
You need to copy the source code of the API in the container at the root "/" path
- Prerequisite
The API is using FLASK engine, here is a list of the package you need to install
apt-get update -y && apt-get install python-dev python3-dev libsasl2-dev python-dev libldap2-dev libssl-dev -y
pip install flask==1.1.2 flask_httpauth==4.1.0 flask_simpleldap python-dotenv==0.14.0
- Persistent data (volume)
Create data folder at the root "/" where data will be stored and declare it as a volume
You will use this folder to mount student list
- API Port
To interact with this API expose 5000 port
- CMD
When container start, it must run the student_age.py (copied at step 4), so it should be something like
CMD [ "python", "./student_age.py" ]
Build your image and try to run it (don't forget to mount student_age.json file at /data/student_age.json in the container), check logs and verify that the container is listening and is ready to answer
Run this command to make sure that the API correctly responding (take a screenshot for delivery purpose)
curl -u toto:python -X GET http://<host IP>:<API exposed port>/pozos/api/v1.0/get_student_ages
Congratulation! Now you are ready for the next step (docker-compose.yml)
After testing your API image, you need to put all together and deploy it, using docker-compose.
The docker-compose.yml file will deploy two services :
- website: the end-user interface with the following characteristics
- image: php:apache - environment: you will provide the USERNAME and PASSWORD to enable the web app to access the API through authentication
- volumes: to avoid php:apache image run with the default website, we will bind the website given by POZOS to use. You must have something like
./website:/var/www/html
- depend on: you need to make sure that the API will start first before the website
- port: do not forget to expose the port
- API: the image builded before should be used with the following specification
- image: the name of the image builded previously - volumes: You will mount student_age.json file in /data/student_age.json
- port: don't forget to expose the port
Delete your previous created container
Run your docker-compose.yml
Finally, reach your website and click on the bouton "List Student"
If the list of the student appears, you are successfully dockerizing the POZOS application! Congratulation (make a screenshot)
POZOS need you to deploy a private registry and store the built images
So you need to deploy :
Or you can use Portus to run both
Don't forget to push your image on your private registry and show them in your delivery.
Your delivery must be zip named firstname.zip (replace firstname by your own) that contain:
- A doc or PDF file with your screenshots and explanations.
- Configuration files used to realize the graded exercise (docker-compose.yml and Dockerfile).
Your delivery will be evaluated on:
- Explanations quality
- Screenshots quality (relevance, visibility)
- Presentation quality
Send your delivery at [email protected] and we will provide you the link of the solution.