Skip to content

Commit aef2b01

Browse files
committed
bugfix: retag docker images to github registry
1 parent b221df6 commit aef2b01

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,5 @@
33
- Enhanced the Log Explorer UI to improve usability by refining the display of Refresh, Save Query, Load Query, and Add Filter actions for a more intuitive user experience..
44

55
- Recreating geoip opensearch index if missing
6+
7+
- Retag docker images to github registry

installer/types/compose.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ func (c *Compose) Populate(conf *Config, stack *StackConfig) *Compose {
8383
LSMem := stack.ServiceResources["logstash"].AssignedMemory
8484
LSMin := stack.ServiceResources["logstash"].MinMemory
8585
c.Services["logstash"] = Service{
86-
Image: utils.Str("utmstack.azurecr.io/logstash:" + conf.Branch),
86+
Image: utils.Str("ghcr.io/utmstack/utmstack/logstash:" + conf.Branch),
8787
Environment: []string{
8888
"CONFIG_RELOAD_AUTOMATIC=true",
8989
fmt.Sprintf("LS_JAVA_OPTS=-Xms%dm -Xmx%dm -Xss100m", LSMem/2, LSMem/2),
@@ -183,7 +183,7 @@ func (c *Compose) Populate(conf *Config, stack *StackConfig) *Compose {
183183
postgresMem := stack.ServiceResources["postgres"].AssignedMemory
184184
postgresMin := stack.ServiceResources["postgres"].MinMemory
185185
c.Services["postgres"] = Service{
186-
Image: utils.Str("utmstack.azurecr.io/postgres:" + conf.Branch),
186+
Image: utils.Str("ghcr.io/utmstack/utmstack/postgres:" + conf.Branch),
187187
Environment: []string{
188188
"POSTGRES_PASSWORD=" + conf.Password,
189189
"PGDATA=/var/lib/postgresql/data/pgdata",
@@ -463,7 +463,7 @@ func (c *Compose) Populate(conf *Config, stack *StackConfig) *Compose {
463463
// temporary create node1 always
464464
if true {
465465
c.Services["node1"] = Service{
466-
Image: utils.Str("utmstack.azurecr.io/opensearch:" + conf.Branch),
466+
Image: utils.Str("ghcr.io/utmstack/utmstack/opensearch:" + conf.Branch),
467467
Ports: []string{
468468
"9200:9200",
469469
},

0 commit comments

Comments
 (0)