-
Notifications
You must be signed in to change notification settings - Fork 77
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use docker compose to run the integration instance (#320)
* Use docker compose to run the integration instance This removes the need for a docker build and it will allow me to run a second instance for #318 The second one will have a sub-path configured Other docker compose advantages: - Allows to turn down the stack after tests - Will recreate the stack from scratch each time * Revert to same version as before * Move docker-compose to common path
- Loading branch information
1 parent
8c55110
commit 530ca55
Showing
9 changed files
with
26 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
version: '3' | ||
services: | ||
grafana: | ||
image: grafana/grafana:10.2.0 | ||
ports: | ||
- "3001:3001" | ||
environment: | ||
- GF_SERVER_HTTP_PORT=3001 | ||
- GF_AUTH_ANONYMOUS_ENABLED=true | ||
- GF_AUTH_ANONYMOUS_ORG_ROLE=Admin | ||
- GF_PATHS=/etc/grafana/provisioning | ||
volumes: | ||
- ./provisioning:/etc/grafana/provisioning | ||
healthcheck: | ||
test: wget --no-verbose --tries=1 --spider http://0.0.0.0:3001/api/health || exit 1 # Use wget because older versions of Grafana don't have curl | ||
interval: 1s | ||
retries: 30 | ||
start_period: 10s |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.