Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix for ARM processors #3

Merged
merged 3 commits into from
Oct 11, 2022
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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion bin/start-server
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ fi

$cmd > /dev/null 2>&1 &

until lsof -i:3000 > /dev/null; do
until lsof -i:9590 > /dev/null; do
printf '.'
sleep 2
done
Expand Down
13 changes: 0 additions & 13 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,6 @@ services:
- SPRING_REDIS_PORT=6379
ports:
- 8080:8080
depends_on:
database:
condition: service_healthy
hmpps-auth:
condition: service_healthy

frontend:
image: quay.io/hmpps/hmpps-approved-premises-ui:latest
Expand All @@ -45,9 +40,6 @@ services:
ports:
- 3000:3000
entrypoint: "node dist/server.js | bunyan"
depends_on:
hmpps-auth:
condition: service_healthy

database:
image: "postgres"
Expand Down Expand Up @@ -85,17 +77,12 @@ services:
- DELIUS_CLIENT_CLIENT-ID=delius-auth-api-client
- DELIUS_CLIENT_CLIENT-SECRET=delius-auth-api-client
- LOGGING_LEVEL_UK_GOV_JUSTICE=debug
depends_on:
community-api:
condition: service_healthy

community-api:
image: quay.io/hmpps/community-api:latest
container_name: community-api
ports:
- "9590:8080"
healthcheck:
test: ["CMD", "wget", "-nv", "-t1", "--spider", "http://localhost:8080/api/health"]
volumes:
- ./seed/community-api:/seed
environment:
Expand Down
1 change: 0 additions & 1 deletion tiltfile
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ resources = [
"prison-api",
"redis",
"hmpps-auth",
"community-api",
]

if local_api:
Expand Down