# InfluxDatabase is up and running with Docker.

InfluxDB is an open-source time-series database for recording metrics, events, and analytics.

InfluxDB is a time-series database built from the ground up to handle high write and query loads. InfluxDB is meant to be used as a backing store for any use case involving large amounts of timestamped data, including DevOps monitoring, application metrics, IoT sensor data, and real-time analytics.


![influx.png](https://cdn.hashnode.com/res/hashnode/image/upload/v1655016147229/Lk-Wc-bIW.png align="left")

Please watch a video to get the details:

%[https://youtu.be/ogDAtwPIPuw]

Step 1: Pull the docker image

```
docker pull influxdb:latest
```

verify the image is available local using

```
docker images
```
create container

```
docker run --name influxdb -d -p 8086:8086  influxdb:latest
```

then hit [http://localhost:8086/](http://localhost:8086/) --> to setup influxdb


# More such articles:

[https://medium.com/techwasti](Link)

[https://www.youtube.com/channel/UCiTaHm1AYqMS4F4L9zyO7qA](Link)

[https://www.techwasti.com/](Link)

==========================**=========================

**If this article adds any value for you then please clap and comment.**

**Let’s connect on [Stackoverflow](http://stackoverflow.com/users/3187349/maheshwar-ligade), [LinkedIn](https://in.linkedin.com/in/maheshwar-ligade-14447841), & [Twitter](https://twitter.com/MaheshwarLigade).**



