forked from tangled.org/core
this repo has no description

fix repo scan path in docker-compose.yml

it is set to `/home/git/repositories` everywhere else (volume mounting, keyfetch config, etc) inside the docker directory.

without this, knotserver uses the default value "/home/git" which means it is out of sync with everywhere else.

Changed files
+1
docker
+1
docker/docker-compose.yml
···
KNOT_SERVER_HOSTNAME: "knot.example.org"
KNOT_SERVER_SECRET: "secret"
KNOT_SERVER_DB_PATH: "/app/knotserver.db"
+
KNOT_REPO_SCAN_PATH: "/home/git/repositories"
volumes:
- "./keys:/etc/ssh/keys"
- "./repositories:/home/git/repositories"