Skip to content

Getting Started

DockerLens currently relies on docker for the local dev environment.

You can start locally running instances using the following command:

docker compose watch
# OR
make dev

This will enable the watch directives which will sync changes from the code into the containers, this removes the need to rebuild and restart the containers for every change.

Running without watch

You can also run it without the watch directives using the following commands:

docker compose up -d # To run it detached.
docker compose up # Attach to containers to view their logs as they are running.

To manually rebuild the images, you can run the following command:

docker compose build
# OR
make build