alexeyhimself/dtu
Product UX Analytics service for Software Development Products Teams
178
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
Watch this installation instruction screencast on YouTube: https://www.youtube.com/embed/Zg3ttmvn_yc
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
In about 15 seconds after docker run command service will be available at http://localhost
For more information visit https://dotheyuse.com
docker pull alexeyhimself/dtu