Open
Conversation
Contributor
|
🚀 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/project-openubl/searchpe/searchpe:carlosthe19916-patch-1
Docker composeversion: "3"
services:
postgresql:
image: postgres:13.7
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:nightly
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 |
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
No description provided.