DEV Community

Mct5330
Mct5330

Posted on

Using Docker

What is Docker?

Docker is a web container tool used for developing deploying, testing, and controlling containers. the tool is extremely powerful and even allows two containers to run from the same host.

Using Docker

Getting started with docker is as simple as downloading the desktop app, or playing with the tutorial labs on their website. Once the app is downloaded you can run the command docker run -dp 80:80 docker/getting-started as shown below, then go to your local host in your browser.

Image descriptionYou can see the recent containers in the docker desktop app.

to be able to integrate the nasa project into docker I had to create a new instance and docker somewhat automatically creates the file setup for you. to run the program you can use dockercompose up.

Top comments (0)