project-openubl / ublhub

Facturacion electronica Peru - Crea y envía XMLs a la SUNAT
https://project-openubl.github.io/
Apache License 2.0
14 stars 13 forks source link

feat: add support for AWS AQS #276

Closed carlosthe19916 closed 1 year ago

project-openubl-preview-bot commented 1 year ago

🚀 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/ublhub/ublhub:sqs

Docker compose
```yaml version: "3" services: postgresql: image: postgres:13.7 ports: - 5432:5432 environment: POSTGRES_DB: ublhub_db POSTGRES_USER: db_username POSTGRES_PASSWORD: db_password healthcheck: test: [ "CMD-SHELL", "pg_isready -U db_username -d ublhub_db" ] interval: 10s timeout: 5s retries: 5 ublhub: image: quay.io/projectopenubl/ublhub: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/ublhub_db healthcheck: test: [ "CMD", "curl", "-f", "http://localhost:8080/q/health" ] interval: 10s timeout: 5s retries: 5 depends_on: postgresql: condition: service_healthy ```