# Platformatic v0.7.0 - An old/new dashboard for Platformatic DB

Hi Folks,

Like [last week](https://blog.platformatic.dev/platformatic-v060-options-auth-and-null), and the [week before](https://blog.platformatic.dev/platformatic-v050-graphql-subscriptions-microservice-tool), we are releasing a new version of Platformatic, v0.7.0.

Full release notes are available at https://github.com/platformatic/platformatic/releases/tag/v0.7.0.

In this release, you'll find a new feature: a dashboard for Platformatic DB. I've been keen on shipping this with the [first release](https://blog.platformatic.dev/our-first-open-source-tool-platformatic-db) of Platformatic in September, however, we were late, and we never finished it. Thanks to the community's help, we could finish it!

## A dashboard for Platformatic DB

The new dashboard for Platformatic DB ships a few key components:

1. GraphiQL integration
    
2. OpenAPI integrations
    
3. Local metrics
    
4. ...and Table View!
    

<iframe width="640" height="416" src="https://www.loom.com/embed/d97416b3fb984e3a829d9e72aab2a9be"></iframe>

## Welcome "Table View", our React Admin integration

In [PR #255](https://github.com/platformatic/platformatic/pull/255), [Riccardo Fiorenza](https://github.com/ricfio) contributed a great new feature: the integration with [React Admin](https://marmelab.com/react-admin/) as part of our dashboard. This integration is based on the foundational work done by [Giacomo Cerquone](https://github.com/giacomocerquone) in [PR #243](https://github.com/platformatic/platformatic/pull/243) that we released in v0.6.0. Thanks, folks!

## Docker images

Platformatic is also available on [Docker Hub](https://hub.docker.com/r/platformatic/platformatic):

```plaintext
FROM platformatic/platformatic:latest

USER root

WORKDIR /opt/<app-name>
COPY migrations migrations
COPY platformatic.db.json platformatic.db.json

# Also, make sure to copy / install your plugins

EXPOSE 3042

CMD ["platformatic", "db", "start"]
```
