Web Application for Docker Using javascript

What is Javascript?

JavaScript is a text-based programming language used both on the client-side and server-side that allows you to make web pages interactive. Where HTML and CSS are languages that give structure and style to web pages, JavaScript gives web pages interactive elements that engage a user.

The program on the remote server sends information to the client (i.e. the user's machine) and the software on the client-side reads the information and renders output on the screen.

Where does python fit into this?

The program on a remote server that I talked about just above is where python comes into the picture. So the client will input the command into the web page and then the program at the backend which is written in python will get the request and process it and give back the response to the front-end which will then be shown to the user.

This app will help the user to run all the docker commands like:

👉docker images 👉docker ps 👉docker run 👉docker rm -f 👉docker exec

Html Code-:

html.jpg

CSS Code-:

css.jpg

JavaScript Code -:

js.jpg