Skip to content

Latest commit

 

History

History
41 lines (28 loc) · 698 Bytes

docker-quickstart.md

File metadata and controls

41 lines (28 loc) · 698 Bytes

Docker Quickstart

Install

Follow the installation instructions for docker and docker-compose

(docker-compose may or may not come with docker on your platform)

Run

docker-compose up

the ui be served at http://localhost:8000

selenium tests

docker-compose \
  -f docker-compose.yml \
  -f docker-compose.override.yml \
  -f docker/docker-compose.test.yml \
  run selenium

node_modules

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>