Skip to content
Snippets Groups Projects
Commit 58d5f14d authored by Sven-Ove Hänsel's avatar Sven-Ove Hänsel
Browse files

modify build script

parent 8f71433d
No related branches found
No related tags found
No related merge requests found
...@@ -11,15 +11,18 @@ declare -A paths=( ...@@ -11,15 +11,18 @@ declare -A paths=(
["sub_pg"]="./infrastructure/streaming/clients/sub/postgres" ["sub_pg"]="./infrastructure/streaming/clients/sub/postgres"
["sub_neo4j"]="./infrastructure/streaming/clients/sub/neo4j" ["sub_neo4j"]="./infrastructure/streaming/clients/sub/neo4j"
["pub_cdm"]="./infrastructure/streaming/clients/pub" ["pub_cdm"]="./infrastructure/streaming/clients/pub"
["cypher_queries"]="./eval/queries/cypher/driver_latest" ["neo4j_queries"]="./eval/queries/cypher/neo4j"
["sql_queries"]="./eval/queries/sql" ["memgraph_queries"]="./eval/queries/cypher/memgraph"
["ongdb_queries"]="./eval/queries/cypher/ongdb" ["ongdb_queries"]="./eval/queries/cypher/ongdb"
["sql_queries"]="./eval/queries/sql"
) )
for name in "${!paths[@]}"; do for name in "${!paths[@]}"; do
path=${paths[$name]} path=${paths[$name]}
echo ''
echo 'Build docker image for '${name}'...' echo 'Build docker image for '${name}'...'
docker build -t lab.it.hs-hannover.de:4567/cwy-p8d-u1/ma_code/${name} ${path} docker build -t lab.it.hs-hannover.de:4567/cwy-p8d-u1/ma_code/${name} ${path}
echo ''
echo 'Push docker image for '${name}'...' echo 'Push docker image for '${name}'...'
docker push lab.it.hs-hannover.de:4567/cwy-p8d-u1/ma_code/${name} docker push lab.it.hs-hannover.de:4567/cwy-p8d-u1/ma_code/${name}
done done
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment