Skip to content

Commit

Permalink
fix: update Docker image reference for Beebop to use ghcr.io
Browse files Browse the repository at this point in the history
  • Loading branch information
absternator committed Dec 5, 2024
1 parent f857b5e commit f13b6ee
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions scripts/run_dependencies
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ PORT=5000
docker volume create $VOLUME
docker run --rm -v $VOLUME:/beebop/storage \
--pull always \
mrcide/beebop-py:$API_IMAGE \
ghcr.io/bacpop/beebop-py:$API_IMAGE \
./scripts/download_databases --refs # remove --refs to download all databases
docker network create $NETWORK > /dev/null || /bin/true

Expand All @@ -23,7 +23,7 @@ docker run -d --rm --name $NAME_WORKER --network=$NETWORK \
--pull always \
--env=REDIS_HOST="$NAME_REDIS" \
-v $VOLUME:/beebop/storage \
mrcide/beebop-py:$API_IMAGE rqworker
ghcr.io/bacpop/beebop-py:$API_IMAGE rqworker

docker run -d --rm --name $NAME_API --network=$NETWORK \
--pull always \
Expand All @@ -32,4 +32,4 @@ docker run -d --rm --name $NAME_API --network=$NETWORK \
--env=DBS_LOCATION="./storage/dbs" \
-v $VOLUME:/beebop/storage \
-p $PORT:5000 \
mrcide/beebop-py:$API_IMAGE
ghcr.io/bacpop/beebop-py:$API_IMAGE

0 comments on commit f13b6ee

Please sign in to comment.