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: login styles #481

Merged
merged 2 commits into from
Apr 14, 2023
Merged

Conversation

carlosthe19916
Copy link
Member

No description provided.

@project-openubl-preview-bot
Copy link
Contributor

project-openubl-preview-bot commented Apr 14, 2023

🚀 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:assets
  • To watch the current status of the container image creation visit Workflow runs
  • To see the list of packages created by the boot visit Packages

Docker compose
version: "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

@carlosthe19916 carlosthe19916 merged commit 14bdae3 into project-openubl:master Apr 14, 2023
@carlosthe19916 carlosthe19916 added the released Issue has been released label Apr 15, 2023
@carlosthe19916
Copy link
Member Author

🎉 This issue has been resolved in v4.1.1 (Release Notes)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
released Issue has been released
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants