From a03d9ce89653e65e2323abf2a364fdc293a2aa2e Mon Sep 17 00:00:00 2001 From: Yury Fedorov Date: Sat, 18 Jun 2022 17:58:03 +0300 Subject: [PATCH] Use community cassandra image instead of bitnami Community version offers arm64 support, whereas bitnami version doesn't work on arm64 architecture. --- preset/cassandra/preset.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/preset/cassandra/preset.go b/preset/cassandra/preset.go index dda09fea..d7f1a201 100644 --- a/preset/cassandra/preset.go +++ b/preset/cassandra/preset.go @@ -51,7 +51,7 @@ type P struct { // Image returns an image that should be pulled to create this container. func (p *P) Image() string { - return fmt.Sprintf("docker.io/bitnami/cassandra:%s", p.Version) + return fmt.Sprintf("docker.io/library/cassandra:%s", p.Version) } // Ports returns ports that should be used to access this container.