Skip to content

Commit

Permalink
💚 maykinmedia/objects-api#408 change port in the curl check
Browse files Browse the repository at this point in the history
annashamray committed May 31, 2024
1 parent f47ee63 commit 3945f5c
Showing 2 changed files with 1 addition and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/quick_start.yml
Original file line number Diff line number Diff line change
@@ -17,7 +17,7 @@ jobs:
run: docker-compose exec -T web src/manage.py createsuperuser --username admin --email [email protected] --no-input
- name: Check main page
run: |
curl_status=$(curl -w '%{http_code}' -o /dev/null -s http://localhost:8001/)
curl_status=$(curl -w '%{http_code}' -o /dev/null -s http://localhost:8000/)
if [[ $curl_status != 200 ]]; then
printf "index page responds with $curl_status status" >&2
exit 1
2 changes: 0 additions & 2 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
version: '3'

services:
db:
image: postgres:12-alpine

0 comments on commit 3945f5c

Please sign in to comment.