Follow the installation instructions for docker and docker-compose
(docker-compose may or may not come with docker on your platform)
docker-compose up
the ui be served at http://localhost:8000
docker-compose \
-f docker-compose.yml \
-f docker-compose.override.yml \
-f docker/docker-compose.test.yml \
run selenium
if you need to update node modules run:
docker-compose exec app yarn
in general you can run anything in the app container with
docker-compose exec app <command>