Fork of https://github.com/oxigraph/oxigraph.git for the purpose of NextGraph project
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
364 B
11 lines
364 B
#!/usr/bin/env bash
|
|
if [[ -z ./Dockerfile ]] ; then
|
|
echo 'this script should be run the docker directory'
|
|
exit 1
|
|
fi
|
|
|
|
cat Dockerfile | docker build -t oxigraph/oxigraph -
|
|
cat Dockerfile | sed s/oxigraph_server/oxigraph_wikibase/g | docker build -t oxigraph/oxigraph-wikibase -
|
|
|
|
docker push oxigraph/oxigraph:latest
|
|
docker push oxigraph/oxigraph-wikibase:latest
|
|
|