-
-
Notifications
You must be signed in to change notification settings - Fork 6
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
Tener distribution unitaria #232
Tener distribution unitaria #232
Conversation
Codecov Report
@@ Coverage Diff @@
## master #232 +/- ##
======================================
Coverage 1.38% 1.38%
======================================
Files 55 54 -1
Lines 797 797
Branches 165 169 +4
======================================
Hits 11 11
Misses 785 785
Partials 1 1
Flags with carried forward coverage won't be shown. Click here to find out more.
Continue to review full report at Codecov.
|
🚀 Container image Preview ✨ The creation of the container image might take aproximately 10 minutes. Once it is available you can pull it using: docker pull ghcr.io/carlosthe19916/searchpe/searchpe:singleDistribution
Docker composeversion: "3"
services:
postgresql:
image: postgres:13.1
ports:
- 5432:5432
environment:
POSTGRES_DB: searchpe_db
POSTGRES_USER: db_username
POSTGRES_PASSWORD: db_password
healthcheck:
test: [ "CMD-SHELL", "pg_isready -U db_username -d searchpe_db" ]
interval: 10s
timeout: 5s
retries: 5
searchpe:
image: quay.io/projectopenubl/searchpe:early-access
ports:
- 8180:8080
environment:
QUARKUS_HTTP_PORT: 8080
QUARKUS_DATASOURCE_USERNAME: db_username
QUARKUS_DATASOURCE_PASSWORD: db_password
QUARKUS_DATASOURCE_JDBC_URL: jdbc:postgresql://postgresql:5432/searchpe_db
healthcheck:
test: [ "CMD", "curl", "-f", "http://localhost:8080/q/health" ]
interval: 10s
timeout: 5s
retries: 5
depends_on:
postgresql:
condition: service_healthy |
No description provided.