-
Notifications
You must be signed in to change notification settings - Fork 0
/
build-rucio-images.sh
executable file
·26 lines (17 loc) · 1.07 KB
/
build-rucio-images.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#! /bin/sh
set -e
export RUCIO_VERSION=1.29.12
export CMS_VERSION=${RUCIO_VERSION}.yuyi1
export CMS_TAG=cms_1_29_4
export HARBOR=yuyiguo
podman build --build-arg RUCIO_VERSION=$RUCIO_VERSION -f docker/rucio-server/Dockerfile -t $HARBOR/rucio-server:release-$CMS_VERSION .
podman push $HARBOR/rucio-server:release-$CMS_VERSION
podman build --build-arg RUCIO_VERSION=$RUCIO_VERSION -f docker/rucio-daemons/Dockerfile -t $HARBOR/rucio-daemons:release-$CMS_VERSION .
podman push $HARBOR/rucio-daemons:release-$CMS_VERSION
#podman build --build-arg RUCIO_VERSION=$RUCIO_VERSION -f docker/rucio-probes/Dockerfile -t $HARBOR/rucio-probes:release-$CMS_VERSION .
#podman push $HARBOR/rucio-probes:release-$CMS_VERSION
#podman build --build-arg RUCIO_VERSION=$RUCIO_VERSION -f docker/rucio-ui/Dockerfile -t $HARBOR/rucio-ui:release-$CMS_VERSION .
#podman push $HARBOR/rucio-ui:release-$CMS_VERSION
#cd ../rucio-upgrade
#podman build --build-arg RUCIO_VERSION=$RUCIO_VERSION -t ericvaandering/rucio-upgrade:release-$CMS_VERSION .
#podman push ericvaandering/rucio-upgrade:release-$CMS_VERSION