diff --git a/render.yaml b/render.yaml index 5591fc9..587a491 100644 --- a/render.yaml +++ b/render.yaml @@ -245,7 +245,7 @@ services: name: temporal-db property: host - type: pserv - name: temporal-ui + name: temporal-web autoDeploy: false plan: Starter region: oregon @@ -261,6 +261,23 @@ services: name: temporal-frontend type: pserv property: host +- type: pserv + name: temporal-ui + autoDeploy: false + plan: Starter + region: oregon + env: docker + dockerfilePath: ./temporal-cluster/ui/Dockerfile + envVars: + - key: PORT + value: 8080 + - key: TEMPORAL_PORT + value: 7233 + - key: TEMPORAL_HOST + fromService: + name: temporal-frontend + type: pserv + property: host # For secure external access to the Temporal Workflow Service via REST # See https://github.com/render-examples/temporal-rest-proxy # - type: web diff --git a/temporal-cluster/ui/Dockerfile b/temporal-cluster/ui/Dockerfile new file mode 100644 index 0000000..bde83f0 --- /dev/null +++ b/temporal-cluster/ui/Dockerfile @@ -0,0 +1,2 @@ +FROM temporalio/ui:0.8.0 +