Skip to content

Commit

Permalink
fix(nocode): Fix docker image tag for run_upgrade script (#2648)
Browse files Browse the repository at this point in the history
  • Loading branch information
Dexter Lee authored Jun 4, 2021
1 parent 5ca484a commit d5934f7
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion docker/datahub-upgrade/datahub-upgrade.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
#!/bin/bash

DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )"
cd $DIR && docker pull acryldata/datahub-upgrade:head && docker run --env-file ./env/docker.env --network="datahub_network" acryldata/datahub-upgrade:latest "$@"
IMAGE=acryldata/datahub-upgrade:head
cd $DIR && docker pull ${IMAGE} && docker run --env-file ./env/docker.env --network="datahub_network" ${IMAGE} "$@"

0 comments on commit d5934f7

Please sign in to comment.