Skip to content

Commit

Permalink
Use community cassandra image instead of bitnami
Browse files Browse the repository at this point in the history
Community version offers arm64 support, whereas bitnami version doesn't
work on arm64 architecture.
  • Loading branch information
orlangure committed Jun 24, 2022
1 parent a467ef6 commit 487da9d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion preset/cassandra/preset.go
Expand Up @@ -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.
Expand Down

0 comments on commit 487da9d

Please sign in to comment.