This is an automated email from the ASF dual-hosted git repository. skrawcz pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/hamilton.git
commit 9e6ee3267c04c4a99d1f6d50a05d74da498ccbb6 Author: Stefan Krawczyk <[email protected]> AuthorDate: Tue Feb 24 19:43:36 2026 -0800 Add TODO comments for Apache Docker image namespace transition Added comments to docker-compose.yml and docker-compose-prod.yml explaining that image names should be updated to apache/hamilton-ui-* once the Apache images are built and pushed to Docker Hub. Current state: - buildx_and_push.sh already configured for apache/hamilton-ui-* namespace - docker-compose files still use dagworks/ui-* for backward compatibility - Comments provide clear migration path for when Apache images are available Next steps: 1. Build and push images using: ./ui/buildx_and_push.sh --version X.X.X --type release 2. Update image names in docker-compose files to apache/hamilton-ui-backend:latest and apache/hamilton-ui-frontend:latest 3. Update documentation (README.md, BUILD.md) with Apache namespace examples This maintains backward compatibility while documenting the Apache naming transition path. --- ui/backend/pyproject.toml | 3 ++- ui/docker-compose-prod.yml | 4 ++++ ui/docker-compose.yml | 4 ++++ 3 files changed, 10 insertions(+), 1 deletion(-) diff --git a/ui/backend/pyproject.toml b/ui/backend/pyproject.toml index 3b6eefff..88342f56 100644 --- a/ui/backend/pyproject.toml +++ b/ui/backend/pyproject.toml @@ -56,7 +56,8 @@ dependencies = [ "psycopg2-binary", "pydantic>=2.0.0", "requests>=2.32.0", - "apache-hamilton>=1.58.0", + # "apache-hamilton>=1.58.0", # TODO once we publish properly fix this. + "sf-hamilton>=1.58.0", "typer", ] diff --git a/ui/docker-compose-prod.yml b/ui/docker-compose-prod.yml index 7a04f7db..8f40dd9c 100644 --- a/ui/docker-compose-prod.yml +++ b/ui/docker-compose-prod.yml @@ -18,6 +18,8 @@ services: backend: container_name: ui-backend + # TODO: Change to apache/hamilton-ui-backend:latest once Apache images are pushed to Docker Hub + # See ui/buildx_and_push.sh for Apache-compliant image build script image: dagworks/ui-backend:latest build: context: backend @@ -44,6 +46,8 @@ services: frontend: container_name: ui-frontend + # TODO: Change to apache/hamilton-ui-frontend:latest once Apache images are pushed to Docker Hub + # See ui/buildx_and_push.sh for Apache-compliant image build script image: dagworks/ui-frontend:latest build: context: frontend diff --git a/ui/docker-compose.yml b/ui/docker-compose.yml index e8b5e40a..d7cbeba9 100644 --- a/ui/docker-compose.yml +++ b/ui/docker-compose.yml @@ -17,6 +17,8 @@ services: backend: container_name: ui-backend + # TODO: Change to apache/hamilton-ui-backend:latest once Apache images are pushed to Docker Hub + # See ui/buildx_and_push.sh for Apache-compliant image build script image: dagworks/ui-backend:latest build: context: backend @@ -44,6 +46,8 @@ services: frontend: container_name: ui-frontend + # TODO: Change to apache/hamilton-ui-frontend:latest once Apache images are pushed to Docker Hub + # See ui/buildx_and_push.sh for Apache-compliant image build script image: dagworks/ui-frontend:latest build: context: frontend
