Skip to content
forked from chatwoot/charts

Helm Charts for Chatwoot

License

chatwoot-br/charts

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Chatwoot Helm Charts

Artifact HUB

This repository contains helm charts for Chatwoot.

Installation

helm repo add chatwoot https://chatwoot-br.github.io/charts
helm install chatwoot chatwoot/chatwoot

Updating

helm dependency update
helm dependency build

Configuration

Check the README.md

Questions? Feedback?

Join our discord server.

Postgres

# First build with --load
docker buildx build --platform linux/amd64,linux/arm64 -t ghcr.io/chatwoot-br/postgres:17 -f docker/postgres/Dockerfile --load .

# Then push the image to the registry
docker push ghcr.io/chatwoot-br/postgres:17

# Create multiple tags for the same image
# This allows referencing the image by specific version or general major version
docker buildx imagetools create \
  --tag ghcr.io/chatwoot-br/postgres:17.5.0 \
  --tag ghcr.io/chatwoot-br/postgres:17.5 \
  --tag ghcr.io/chatwoot-br/postgres:17 \
  ghcr.io/chatwoot-br/postgres:17

# Build and push multi-architecture PostgreSQL image with extensions
# - Builds for both AMD64 and ARM64 platforms
# - Includes pgvector extension for vector similarity search
# - Includes pgsql-http for making HTTP requests from PostgreSQL
# - Based on PostgreSQL version 17.5.0
docker buildx build --platform linux/amd64,linux/arm64 \
  --build-arg PGVECTOR_TAG=v0.8.0 \
  --build-arg PGSQL_HTTP_TAG=v1.6.3 \
  --build-arg PG_MAJOR=16.6.0 \
  -t ghcr.io/chatwoot-br/postgres:16 \
  -f docker/postgres/Dockerfile \
  --push .

docker buildx imagetools create \
  --tag ghcr.io/chatwoot-br/postgres:16.6.0 \
  --tag ghcr.io/chatwoot-br/postgres:16.6 \
  --tag ghcr.io/chatwoot-br/postgres:16 \
  ghcr.io/chatwoot-br/postgres:16

About

Helm Charts for Chatwoot

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Smarty 90.2%
  • Dockerfile 9.8%