Question: Part 1 : create an image to serve a static file. Some of your company's applications include simple static files to be served. you would

Part 1: create an image to serve a static file. Some of your company's applications include simple static files to be served. you would like to create separate containers to serve static content. for testing, you can use the Python http server in the standard library, which can be run using "python -m http server -d " to serve the files in listening on the given port. Create a new folder /home/user/web2 with a Dockerfile and a subfolder www containing a static file to be served. Write the Dockerfile so that it includes the default Python http server command to run for the web server, using port 8001. One you have assembled the necessary steps in your Dockerfile, execute the command to build it. Make a screen capture showing the successful build of the web2 image. Now that your image is built, create and run a container based on it. you may do this in several steps, or use the appropriate docker command to accomplish the task in a single step. Ensure that you connect port 8001 of the docker container to port 8001 on the host. also ensure that you map the www subfolder you created to the directory in the container that you are serving your static file from. IN firefox, navigate to localhost 8001 to show the directory listing on port 8001, which should contain your static file. Make a screen capture showing the directory listing served on port 8001
part 2: add the static service to the Docker Compose File. Any static web services should be started as a part of the multi-container application. Update the file docker-compose.yml of your company's Django-based application to use the new web2 image created in the previous part. This new service should be named web2 and should be exposed on port 8080 of the Docker host. Once you have updated the docker-compose.yml file, use docker compost to start the multi-container Django application. The output or your command should indicate all three containers (db, web and web2) were created. make a screen capture showing the creation of the web, web2, and db containers in the docker compose output. IN firefox, navigate to your wb2 service running on port 8080 to display a directory listing that contains the file you created in the previous part. Make a screen capture showing the directory listing served on port 8080

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock

The question is incomplete as it asks to make a screen capture of the successful build but does not ... View full answer

blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!