This repository has been archived by the owner on Apr 22, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add company ws * Add websockets in company * Save work * Add namespaces * ns page * Add company pages * Add filters * Remove node 10 * Fix unit tests * Remove fetch documents * Fix node server script * Remove cypress tests
- Loading branch information
1 parent
fdd5339
commit bb17b57
Showing
153 changed files
with
7,870 additions
and
5,960 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,110 @@ | ||
version: "3" | ||
|
||
services: | ||
keycloak: | ||
image: quay.io/keycloak/keycloak:12.0.4 | ||
ports: | ||
- 8180:8080 | ||
environment: | ||
KEYCLOAK_USER: admin | ||
KEYCLOAK_PASSWORD: admin | ||
KEYCLOAK_IMPORT: /tmp/openubl-realm.json | ||
DB_VENDOR: h2 | ||
volumes: | ||
- ./openubl-realm.json:/tmp/openubl-realm.json:z | ||
healthcheck: | ||
test: ["CMD", "curl", "-f", "http://localhost:8080/auth/realms/openubl"] | ||
interval: 10s | ||
timeout: 5s | ||
retries: 5 | ||
|
||
minio: | ||
image: minio/minio:RELEASE.2021-03-17T02-33-02Z | ||
volumes: | ||
- minio-data:/data | ||
ports: | ||
- "9000:9000" | ||
environment: | ||
MINIO_ACCESS_KEY: BQA2GEXO711FVBVXDWKM | ||
MINIO_SECRET_KEY: uvgz3LCwWM3e400cDkQIH/y1Y4xgU4iV91CwFSPC | ||
command: server /data | ||
healthcheck: | ||
test: ["CMD", "curl", "-f", "http://localhost:9000/minio/health/live"] | ||
interval: 30s | ||
timeout: 20s | ||
retries: 3 | ||
|
||
zookeeper: | ||
image: debezium/zookeeper:1.3.1.Final | ||
ports: | ||
- 2181:2181 | ||
- 2888:2888 | ||
- 3888:3888 | ||
|
||
kafka: | ||
image: debezium/kafka:1.3.1.Final | ||
ports: | ||
- 9092:9092 | ||
environment: | ||
- ZOOKEEPER_CONNECT=zookeeper:2181 | ||
depends_on: | ||
zookeeper: | ||
condition: service_started | ||
|
||
xsender-db: | ||
image: debezium/postgres:12 | ||
ports: | ||
- 5432:5432 | ||
environment: | ||
- POSTGRES_USER=xsender_username | ||
- POSTGRES_PASSWORD=xsender_password | ||
- POSTGRES_DB=xsender_db | ||
healthcheck: | ||
test: ["CMD-SHELL", "pg_isready -U xsender_username -d xsender_db"] | ||
interval: 2s | ||
timeout: 20s | ||
retries: 10 | ||
|
||
xsender: | ||
image: quay.io/projectopenubl/xsender-server:master | ||
ports: | ||
- 8081:8080 | ||
environment: | ||
QUARKUS_HTTP_PORT: 8080 | ||
QUARKUS_DATASOURCE_USERNAME: xsender_username | ||
QUARKUS_DATASOURCE_PASSWORD: xsender_password | ||
QUARKUS_DATASOURCE_JDBC_URL: jdbc:postgresql://xsender-db:5432/xsender_db | ||
QUARKUS_OIDC_AUTH_SERVER_URL: http://keycloak:8080/auth/realms/openubl | ||
QUARKUS_OIDC_CLIENT_ID: xsender-api | ||
QUARKUS_OIDC_CREDENTIALS_SECRET: secret | ||
healthcheck: | ||
test: ["CMD", "curl", "-f", "http://localhost:8080/api/q/health"] | ||
interval: 10s | ||
timeout: 5s | ||
retries: 5 | ||
depends_on: | ||
keycloak: | ||
condition: service_healthy | ||
kafka: | ||
condition: service_started | ||
xsender-db: | ||
condition: service_healthy | ||
|
||
kafka-connect: | ||
image: debezium/connect:1.3.1.Final | ||
ports: | ||
- 8083:8083 | ||
environment: | ||
BOOTSTRAP_SERVERS: kafka:9092 | ||
GROUP_ID: 1 | ||
CONFIG_STORAGE_TOPIC: debezium_connect_config | ||
OFFSET_STORAGE_TOPIC: debezium_connect_offsets | ||
STATUS_STORAGE_TOPIC: debezium_connect_status | ||
depends_on: | ||
kafka: | ||
condition: service_started | ||
xsender-db: | ||
condition: service_started | ||
|
||
volumes: | ||
minio-data: |
Oops, something went wrong.