Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/ci-cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ jobs:
run: |
grep -Fq 'COMPOSE_PROJECT="${RALLYTRACK_COMPOSE_PROJECT:-devops}"' pi/deploy.sh
test "$(grep -Fc -- '-p "$COMPOSE_PROJECT"' pi/deploy.sh)" = "2"
grep -Fq '"http://127.0.0.1/"' docker-compose.pi.yml
- name: Validate local Compose model
run: docker compose -f docker-compose.yml config --quiet
- name: Validate Pi Compose model
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.pi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ services:
mem_limit: 128m
restart: unless-stopped
healthcheck:
test: ["CMD", "wget", "-q", "-O", "/dev/null", "http://localhost/"]
test: ["CMD", "wget", "-q", "-O", "/dev/null", "http://127.0.0.1/"]
interval: 15s
timeout: 5s
start_period: 10s
Expand Down