-
Notifications
You must be signed in to change notification settings - Fork 230
Expand file tree
/
Copy pathtemporal.yaml
More file actions
44 lines (40 loc) · 1.06 KB
/
temporal.yaml
File metadata and controls
44 lines (40 loc) · 1.06 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
services:
temporal:
image: tryretool/one-offs:retool-temporal-1.1.6
env_file: docker.env
environment:
# To enable TLS between temporal and external postgres, set both below variables to true
- SQL_TLS_ENABLED=false
- SQL_TLS=false
# Defined twice because temporal-server and temporal-sql-tool use different envvars
- SQL_TLS_DISABLE_HOST_VERIFICATION=true
- SQL_HOST_VERIFICATION=false
ports:
- 7233:7233
networks:
- backend
- temporal
# Optional Temporal tools
# temporal-admin-tools:
# image: temporalio/admin-tools:1.18.5
# environment:
# - TEMPORAL_CLI_ADDRESS=temporal:7233
# networks:
# - temporal
# depends_on:
# - temporal
# stdin_open: true
# tty: true
# temporal-ui:
# image: temporalio/ui:2.9.1
# environment:
# - TEMPORAL_ADDRESS=temporal:7233
# - TEMPORAL_CORS_ORIGINS=http://localhost:3000
# networks:
# - temporal
# depends_on:
# - temporal
# ports:
# - 8080:8080
networks:
temporal: