From 7b74fa9b0aa86477414c0105d4a64b80e2e032b5 Mon Sep 17 00:00:00 2001 From: Tpt Date: Wed, 15 Mar 2023 18:21:41 +0100 Subject: [PATCH] Stop advertising the Docker images on Docker Hub --- README.md | 1 - server/README.md | 9 +++------ 2 files changed, 3 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 023b9b5a..57592e7c 100644 --- a/README.md +++ b/README.md @@ -29,7 +29,6 @@ It is split into multiple parts: [![npm](https://img.shields.io/npm/v/oxigraph)](https://www.npmjs.com/package/oxigraph) - [Oxigraph server](https://crates.io/crates/oxigraph_server) that provides a standalone binary of a web server implementing the [SPARQL 1.1 Protocol](https://www.w3.org/TR/sparql11-protocol/) and the [SPARQL 1.1 Graph Store Protocol](https://www.w3.org/TR/sparql11-http-rdf-update/). Its source code is in the `server` directory. [![Latest Version](https://img.shields.io/crates/v/oxigraph_server.svg)](https://crates.io/crates/oxigraph_server) - [![Docker Image Version (latest semver)](https://img.shields.io/docker/v/oxigraph/oxigraph?sort=semver)](https://hub.docker.com/r/oxigraph/oxigraph) Oxigraph implements the following specifications: diff --git a/server/README.md b/server/README.md index 0d09e5f1..4d9eb2cc 100644 --- a/server/README.md +++ b/server/README.md @@ -3,9 +3,6 @@ Oxigraph Server [![Latest Version](https://img.shields.io/crates/v/oxigraph_server.svg)](https://crates.io/crates/oxigraph_server) [![Crates.io downloads](https://img.shields.io/crates/d/oxigraph_server)](https://crates.io/crates/oxigraph_server) -[![Docker Image Version (latest semver)](https://img.shields.io/docker/v/oxigraph/oxigraph?sort=semver)](https://hub.docker.com/r/oxigraph/oxigraph) -[![Docker Image Size (latest semver)](https://img.shields.io/docker/image-size/oxigraph/oxigraph)](https://hub.docker.com/r/oxigraph/oxigraph) -[![Docker Pulls](https://img.shields.io/docker/pulls/oxigraph/oxigraph)](https://hub.docker.com/r/oxigraph/oxigraph) [![Conda](https://img.shields.io/conda/vn/conda-forge/oxigraph-server)](https://anaconda.org/conda-forge/oxigraph-server) [![actions status](https://github.com/oxigraph/oxigraph/workflows/build/badge.svg)](https://github.com/oxigraph/oxigraph/actions) [![Gitter](https://badges.gitter.im/oxigraph/community.svg)](https://gitter.im/oxigraph/community?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge) @@ -90,13 +87,13 @@ It is also possible to load RDF data offline using bulk loading: ### Display the help menu ```sh -docker run --rm oxigraph/oxigraph --help +docker run --rm ghcr.io/oxigraph/oxigraph --help ``` ### Run the Webserver Expose the server on port `7878` of the host machine, and save data on the local `./data` folder ```sh -docker run --rm -v $PWD/data:/data -p 7878:7878 oxigraph/oxigraph --location /data serve --bind 0.0.0.0:7878 +docker run --rm -v $PWD/data:/data -p 7878:7878 ghcr.io/oxigraph/oxigraph --location /data serve --bind 0.0.0.0:7878 ``` You can then access it from your machine on port `7878`: @@ -208,7 +205,7 @@ cd oxigraph Then run this command to build the image locally: ````sh -docker build -t oxigraph/oxigraph -f server/Dockerfile . +docker build -t ghcr.io/oxigraph/oxigraph -f server/Dockerfile . ```` ## Homebrew