Skip to content

Latest commit

 

History

History
15 lines (14 loc) · 526 Bytes

development.md

File metadata and controls

15 lines (14 loc) · 526 Bytes

docker container

Check if the container is working

docker build -t canary-checker -f Dockerfile . # or something like this
docker run \
  -v `pwd`:'/tmp/' \
  -p=8080:8080 -p=5423:5432 -p=3000:3000 \
  -it \
  canary-checker serve \
    --db="postgres://postgres:postgres@host.docker.internal:5432/canary" # host.docker.internal points to host. Change to point to postgres instance \
    --httpPort=8080 \
    -c /tmp/test/aggregate-test/config/main.yaml # config for checkers \
    --maxStatusCheckCount 10