Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions docker-init/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,13 @@

This directory holds code to setup docker containers for dynamoDB, a spark master, and a spark worker. It also creates a container which contains a parquet table with example data containing anomolies. To start, run:

> [!NOTE]
> Make sure you have `docker>=20.10` installed.


```
$ cd chronon
$ docker-compose -f docker-init/compose.yaml up --build
$ docker compose -f docker-init/compose.yaml up --build
...
app-1 | [info] 2024-09-30 20:47:56,448 [main] INFO play.api.Play - Application started (Prod) (no global state)
app-1 | [info] 2024-09-30 20:47:56,665 [main] INFO play.core.server.PekkoHttpServer - Listening for HTTP on /[0:0:0:0:0:0:0:0]:9000
Expand All @@ -16,6 +20,6 @@ The **frontend** is served at: http://localhost:3000

You can also access the parquet anomaly data table. To do so, from another terminal run:

`docker-compose exec app bash`
`docker compose exec app bash`

The parquet is available in the /app/data directory.