Skip to content
Snippets Groups Projects
Commit ed602e7e authored by Steven Dake's avatar Steven Dake
Browse files

Provide script to build docker images

Build all docker images one at a time or with one top level call
parent 310f02d4
No related branches found
No related tags found
No related merge requests found
Showing
with 41 additions and 5 deletions
#!/bin/bash
# If the directories were numbered, a simple find could be used to build ;-)
CONTAINERS=(fedora-rdo-base cinder glance/glance-base glance/glance-api glance/glance-registry heat/heat-base heat/heat-api heat/heat-engine keystone mariadb rabbitmq)
for IMAGE in ${CONTAINERS[@]}; do
echo "Building $IMAGE"
pushd .
cd ${IMAGE}
./build
popd
done
#!/bin/bash
docker build --tag fedora-rdo-cinder .
#!/bin/bash
docker build --tag fedora-rdo-base .
#!/bin/bash
docker build --tag fedora-rdo-glance-api .
#!/bin/bash
docker build --tag fedora-rdo-glance-base .
#!/bin/bash
docker build --tag glance-registry .
#!/bin/bash
docker build --tag fedora-rdo-heat-api .
#!/bin/bash
docker build --tag fedora-rdo-heat-base .
#!/bin/bash
docker build --tag fedora-rdo-heat-engine .
#!/bin/bash
docker build --tag fedora-rdo-keystone .
#!/bin/bash
docker build --tag fedora-rdo-mariadb .
#!/bin/bash
docker build --tag fedora-rdo-rabbitmq .
#!/bin/bash
docker build --tag rhel-osp-base .
#!/bin/bash
sudo docker build --tag fedora-rdo-swift-account-server .
docker build --tag fedora-rdo-swift-account-server .
#!/bin/bash
sudo docker build --tag swift-proxy-base .
docker build --tag swift-proxy-base .
#!/bin/bash
sudo docker build --tag fedora-rdo-swift-container-server .
docker build --tag fedora-rdo-swift-container-server .
#!/bin/bash
sudo docker build --tag fedora-rdo-swift-object-server .
docker build --tag fedora-rdo-swift-object-server .
#!/bin/bash
sudo docker build --tag fedora-rdo-swift-proxy-server .
docker build --tag fedora-rdo-swift-proxy-server .
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment