forked from dmwm/CMSRucio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build-rucio-images.sh
executable file
·25 lines (16 loc) · 1.05 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
#! /bin/sh
set -e
export RUCIO_VERSION=32.3.1
export CMS_VERSION=${RUCIO_VERSION}.cms1
export HARBOR=registry.cern.ch/cmsrucio
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