Skip to content
This repository has been archived by the owner on Dec 13, 2023. It is now read-only.

Commit

Permalink
build fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
v1r3n committed Sep 9, 2023
1 parent 373f594 commit 22967e3
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 16 deletions.
3 changes: 1 addition & 2 deletions docker/server/DockerfileLocal
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,7 @@ RUN apk add --update nodejs npm yarn

COPY . /conductor
WORKDIR /conductor/ui
#RUN yarn install && yarn build
RUN mkdir build
RUN yarn install && yarn build
RUN ls -ltr
RUN echo "Done building UI"

Expand Down
26 changes: 12 additions & 14 deletions docker/server/config/config-local-postgres.properties
Original file line number Diff line number Diff line change
@@ -1,20 +1,18 @@
conductor.grpc-server.enabled=false
# Database persistence type.
conductor.db.type=postgres
conductor.db.schema=conductor
conductor.postgres.schema=conductor
conductor.db.queue.type=postgres
spring.datasource.url=jdbc:postgresql://localhost:5432/postgres?schema=conductor&ApplicationName=conductor

# postgres
spring.datasource.url=jdbc:postgresql://localhost:5432/postgres
spring.datasource.username=postgres
spring.datasource.password=postgres
conductor.indexing.type=postgres
conductor.indexing.enabled=true

# The following is to force Elastic Search IndexDAO not to run. If it just missing it will still try to start v6
conductor.elasticsearch.version=postgres
flyway.schema=clo-workflow
# Hikari pool sizes are -1 by default and prevent startup
spring.datasource.hikari.maximum-pool-size=10
spring.datasource.hikari.minimum-idle=2
# Elastic search instance indexing is enabled.
#conductor.indexing.enabled=false
conductor.indexing.enabled=true
conductor.indexing.type=postgres

# Additional modules for metrics collection exposed to Prometheus (optional)
conductor.metrics-prometheus.enabled=true
management.endpoints.web.exposure.include=prometheus

# Load sample kitchen-sink workflow
loadSample=true

0 comments on commit 22967e3

Please sign in to comment.