Skip to content

Commit

Permalink
Allow make build to run locally without error
Browse files Browse the repository at this point in the history
  • Loading branch information
Stephen.James committed Mar 12, 2024
1 parent 8a3dcc0 commit 1225bc3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
#!make
include .env
ifneq (,$(wildcard ./.env))
include .env
endif
export

.DEFAULT_GOAL := help
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@ networks:
services:
reachability:
image: ghcr.io/ministryofjustice/staff-infrastructure-monitoring-app-reachability:main
platform: linux/x86_64
container_name: app-reachability
environment:
- PROM_USER= # basic auth username for prometheus
- PROM_PASS= # basic auth password for prometheus
- PROM_TARGET= # full url of http endpoint for monitoring
- REMOTE_WRITE_URL= # url for prometheus/thanos remote write

0 comments on commit 1225bc3

Please sign in to comment.