From 1cdad59081fa44af9c2306844be7320ece6c1b93 Mon Sep 17 00:00:00 2001 From: sigeshuo Date: Thu, 11 Jul 2024 10:57:03 +0800 Subject: [PATCH] fix --- apps/hubble/docker-compose.yml | 2 +- scripts/publish-image.sh | 10 ++++++++-- 2 files changed, 9 insertions(+), 3 deletions(-) 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