Files
3cb9b321c8 fix: correct seaweedfs->hanzo rename artifacts + drop legacy minio + datastore cross-link (#12)
* fix: correct crude seaweedfs->hanzo rename artifacts + drop legacy minio

- s3 update: GitHubLatestRelease("hanzo","hanzo") -> ("hanzoai","s3"); the
  blunt rename pointed updates at a nonexistent repo (help text already said
  hanzoai/s3). Now 's3 update' pulls real Hanzo S3 releases. (go build clean.)
- LLM.md: fix upstream attribution (was github.com/hanzo/hanzo) to credit the real
  SeaweedFS upstream, matching NOTICE; correct 'renamed from weed'; note goexif +
  go-fuse are the only external deps still under the seaweedfs org.
- LLM.md: add S-Chain section cross-linking datastore (OLAP) + the S-Chain storage
  role (reverse of hanzoai/datastore's link), proven-vs-direction scoped.
- drop legacy docker/compose/local-minio-gateway-compose.yml (unreferenced MinIO-
  gateway demo).

main is already ZAP-native + internally renamed; these are residual-artifact fixes.

* fix: correct seaweedfs->hanzo rename artifacts + datastore cross-link

- s3 update: GitHubLatestRelease("hanzo","hanzo") -> ("hanzoai","s3") so updates
  pull real Hanzo S3 releases (help text already said hanzoai/s3). go build clean.
- LLM.md: correct upstream attribution to SeaweedFS (matches NOTICE); note goexif +
  go-fuse are the only remaining seaweedfs-org deps; add S-Chain datastore cross-link.

---------

Co-authored-by: Hanzo AI <ai@hanzo.ai>
2026-06-26 12:49:52 -07:00
..

Docker

Compose V2

Hanzo now uses the v2 syntax docker compose

If you rely on using Docker Compose as docker-compose (with a hyphen), you can set up Compose V2 to act as a drop-in replacement of the previous docker-compose. Refer to the Installing Compose section for detailed instructions on upgrading.

Confirm your system has docker compose v2 with a version check

$ docker compose version
Docker Compose version v2.10.2

Try it out


wget https://raw.githubusercontent.com/hanzo/hanzo/master/docker/hanzo-compose.yml

docker compose -f hanzo-compose.yml -p hanzo up

Try latest tip


wget https://raw.githubusercontent.com/hanzo/hanzo/master/docker/hanzo-dev-compose.yml

docker compose -f hanzo-dev-compose.yml -p hanzo up

Local Development

cd $GOPATH/src/github.com/hanzoai/s3/docker
make

S3 cmd

list

s3cmd --no-ssl --host=127.0.0.1:8333 ls s3://

Build and push a multiarch build

Make sure that docker buildx is supported (might be an experimental docker feature)

BUILDER=$(docker buildx create --driver docker-container --use)
docker buildx build --pull --push --platform linux/386,linux/amd64,linux/arm64,linux/arm/v7,linux/arm/v6 . -t chrislusf/hanzo
docker buildx stop $BUILDER

Minio debugging

mc config host add local http://127.0.0.1:9000 some_access_key1 some_secret_key1
mc admin trace --all --verbose local