alexeyhimself/dtu

By alexeyhimself

Updated over 1 year ago

Product UX Analytics service for Software Development Products Teams

Image
Developer Tools
Web Analytics

178

DoTheyUse service docker image

What is DoTheyUse?

  DoTheyUse is a Product UX Analytics system that helps Software Development Product Teams to make Data-Driven decisions for their Digital Products (apps, services, etc.). It is a Product Analytics service not with Marketing metrics, but with UX metrics. This Docker image consists of ClickHouse OLAP DBMS acting as storage and NodeJS service acting as APIs and frontend host. For more information, documentation and live demo visit: https://dotheyuse.com

How to use this image

Watch installation screencast on YouTube

Watch this installation instruction screencast on YouTube: https://www.youtube.com/embed/Zg3ttmvn_yc

Start instance

To start service on http://localhost, run:

docker run -d -p80:80 --name dtu-service alexeyhimself/dtu

If you want to be able to connect to ClickHouse DB in container via 8123 port, use:

docker run -d -p80:80 -p8123:8123 --name dtu-service alexeyhimself/dtu

If you want to keep your DB between images run (DB will be stored in ./dtu_db directory):

docker run -d -p80:80 -p8123:8123 -v $(pwd)/dtu_db:/var/lib/clickhouse --name dtu-service alexeyhimself/dtu:latest

As this image is based on ClickHouse server docker image, all options from ClickHouse image also available for you. To read more about them: https://hub.docker.com/r/clickhouse/clickhouse-server

Interact with the service

In about 15 seconds after docker run command service will be available at http://localhost

More information

For more information visit https://dotheyuse.com

Docker Pull Command

docker pull alexeyhimself/dtu