File tree 6 files changed +14
-14
lines changed
self-hosting/deployment-options
6 files changed +14
-14
lines changed Original file line number Diff line number Diff line change @@ -97,7 +97,7 @@ variable "tracecat_ui_image" {
97
97
98
98
variable "tracecat_image_tag" {
99
99
type = string
100
- default = " 0.20.3 "
100
+ default = " 0.20.4 "
101
101
}
102
102
103
103
variable "temporal_server_image" {
Original file line number Diff line number Diff line change @@ -65,7 +65,7 @@ variable "tracecat_ui_image" {
65
65
66
66
variable "tracecat_image_tag" {
67
67
type = string
68
- default = " 0.20.3 "
68
+ default = " 0.20.4 "
69
69
}
70
70
71
71
variable "temporal_server_image" {
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ services:
14
14
- ./Caddyfile:/etc/caddy/Caddyfile
15
15
16
16
api :
17
- image : ghcr.io/tracecathq/tracecat:${TRACECAT__IMAGE_TAG:-0.20.3 }
17
+ image : ghcr.io/tracecathq/tracecat:${TRACECAT__IMAGE_TAG:-0.20.4 }
18
18
container_name : api
19
19
restart : unless-stopped
20
20
networks :
@@ -59,7 +59,7 @@ services:
59
59
OLLAMA__API_URL : ${OLLAMA__API_URL}
60
60
61
61
worker :
62
- image : ghcr.io/tracecathq/tracecat:${TRACECAT__IMAGE_TAG:-0.20.3 }
62
+ image : ghcr.io/tracecathq/tracecat:${TRACECAT__IMAGE_TAG:-0.20.4 }
63
63
restart : unless-stopped
64
64
networks :
65
65
- core
@@ -83,7 +83,7 @@ services:
83
83
command : ["python", "tracecat/dsl/worker.py"]
84
84
85
85
executor :
86
- image : ghcr.io/tracecathq/tracecat:${TRACECAT__IMAGE_TAG:-0.20.3 }
86
+ image : ghcr.io/tracecathq/tracecat:${TRACECAT__IMAGE_TAG:-0.20.4 }
87
87
restart : unless-stopped
88
88
networks :
89
89
- core
@@ -118,7 +118,7 @@ services:
118
118
]
119
119
120
120
ui :
121
- image : ghcr.io/tracecathq/tracecat-ui:${TRACECAT__IMAGE_TAG:-0.20.3 }
121
+ image : ghcr.io/tracecathq/tracecat-ui:${TRACECAT__IMAGE_TAG:-0.20.4 }
122
122
container_name : ui
123
123
restart : unless-stopped
124
124
networks :
Original file line number Diff line number Diff line change @@ -45,10 +45,10 @@ Use the commands listed below to download the required configuration files
45
45
46
46
``` bash
47
47
# 1. Download the env.sh installation script
48
- curl -o env.sh https://raw.githubusercontent.com/TracecatHQ/tracecat/0.20.3 /env.sh
48
+ curl -o env.sh https://raw.githubusercontent.com/TracecatHQ/tracecat/0.20.4 /env.sh
49
49
50
50
# 2. Download the .env.example template file (env.sh needs this to generate your .env file)
51
- curl -o .env.example https://raw.githubusercontent.com/TracecatHQ/tracecat/0.20.3 /.env.example
51
+ curl -o .env.example https://raw.githubusercontent.com/TracecatHQ/tracecat/0.20.4 /.env.example
52
52
53
53
# 3. Make the env.sh script executable and run it
54
54
chmod +x env.sh && ./env.sh
@@ -84,13 +84,13 @@ Tracecat uses Caddy as a reverse proxy.
84
84
You'll need to download the following ` Caddyfile ` to configure this service.
85
85
86
86
``` bash
87
- curl -o Caddyfile https://raw.githubusercontent.com/TracecatHQ/tracecat/0.20.3 /Caddyfile
87
+ curl -o Caddyfile https://raw.githubusercontent.com/TracecatHQ/tracecat/0.20.4 /Caddyfile
88
88
```
89
89
90
90
## Download Docker Compose File
91
91
92
92
``` bash
93
- curl -o docker-compose.yml https://raw.githubusercontent.com/TracecatHQ/tracecat/0.20.3 /docker-compose.yml
93
+ curl -o docker-compose.yml https://raw.githubusercontent.com/TracecatHQ/tracecat/0.20.4 /docker-compose.yml
94
94
```
95
95
96
96
## Start Tracecat
Original file line number Diff line number Diff line change @@ -23,8 +23,8 @@ description: Learn how to safely update versions and run data migrations.
23
23
version.
24
24
25
25
```
26
- curl -o env-migration.sh https://raw.githubusercontent.com/TracecatHQ/tracecat/0.20.3 /env-migration.sh
27
- curl -o .env.example https://raw.githubusercontent.com/TracecatHQ/tracecat/0.20.3 /.env.example
26
+ curl -o env-migration.sh https://raw.githubusercontent.com/TracecatHQ/tracecat/0.20.4 /env-migration.sh
27
+ curl -o .env.example https://raw.githubusercontent.com/TracecatHQ/tracecat/0.20.4 /.env.example
28
28
```
29
29
</Step >
30
30
<Step title = " Execute environment variables migration" >
@@ -39,7 +39,7 @@ description: Learn how to safely update versions and run data migrations.
39
39
Download the latest Docker Compose file.
40
40
41
41
```
42
- curl -o docker-compose.yml https://raw.githubusercontent.com/TracecatHQ/tracecat/0.20.3 /docker-compose.yml
42
+ curl -o docker-compose.yml https://raw.githubusercontent.com/TracecatHQ/tracecat/0.20.4 /docker-compose.yml
43
43
```
44
44
</Step >
45
45
<Step title = " Restart Tracecat" >
Original file line number Diff line number Diff line change 1
1
"""Tracecat is the open source Tines / Splunk SOAR alternative."""
2
2
3
- __version__ = "0.20.3 "
3
+ __version__ = "0.20.4 "
You can’t perform that action at this time.
0 commit comments