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.
 
 
 
 
 
 
oxigraph/docker/publish_docker_images.sh

11 lines
336 B

#!/usr/bin/env bash
if [[ -z ./Dockerfile ]] ; then
echo 'this script should be run the docker directory'
exit 1
fi
cat server/Dockerfile | docker build -t oxigraph/oxigraph -
cat wikibase/Dockerfile | docker build -t oxigraph/oxigraph-wikibase -
docker push oxigraph/oxigraph:latest
docker push oxigraph/oxigraph-wikibase:latest