diff --git a/docker/server/DockerfileLocal b/docker/server/DockerfileLocal index 8b6116bf74..84bc0bddf9 100644 --- a/docker/server/DockerfileLocal +++ b/docker/server/DockerfileLocal @@ -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" diff --git a/docker/server/config/config-local-postgres.properties b/docker/server/config/config-local-postgres.properties index 1a8a8a4e46..c41c344c10 100755 --- a/docker/server/config/config-local-postgres.properties +++ b/docker/server/config/config-local-postgres.properties @@ -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 \ No newline at end of file +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