diff --git a/apps/hubble/docker-compose.yml b/apps/hubble/docker-compose.yml index dd2736e0d1..c96fd7af3d 100644 --- a/apps/hubble/docker-compose.yml +++ b/apps/hubble/docker-compose.yml @@ -10,7 +10,7 @@ services: hubble: - image: sigeshuo/hubble:latest + image: sigeshuo/farcaster:latest pull_policy: always restart: always command: ["npx", "pm2-runtime", "start", "pm2.config.cjs"] diff --git a/scripts/publish-image.sh b/scripts/publish-image.sh index 4b76dd81f8..b5dc493a33 100755 --- a/scripts/publish-image.sh +++ b/scripts/publish-image.sh @@ -17,6 +17,12 @@ docker buildx create --use docker buildx build -f Dockerfile.hubble \ --platform "linux/amd64,linux/arm64" \ - -t sigeshuo/farcaster:${HUBBLE_VERSION} \ - -t sigeshuo/farcaster:latest \ + -t sigeshuo/hubble:"${HUBBLE_VERSION}" \ + -t sigeshuo/hubble:latest \ . + +docker buildx build -f Dockerfile.hubble \ + --platform "linux/amd64,linux/arm64" \ + -t sigeshuo/farcaster:"${HUBBLE_VERSION}" \ + -t sigeshuo/farcaster:latest \ + . \ No newline at end of file