Skip to content

Commit

Permalink
Merge pull request #165 from white-gecko/feature/specifyContainerImag…
Browse files Browse the repository at this point in the history
…eRegistry

Specify the default container image registry docker.io
  • Loading branch information
JJ-Author authored Feb 2, 2024
2 parents 05ac87f + 6a9f5b0 commit 1ff037f
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ubuntu:22.04
FROM docker.io/ubuntu:22.04

# Install node.js, Caddy as proxy server, and java.
RUN apt-get update && \
Expand Down
4 changes: 2 additions & 2 deletions devenv/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
version: "3.0"
services:
gstore:
image: dbpedia/gstore:dev #dbpedia/gstore:dev
image: docker.io/dbpedia/gstore:dev
container_name: devenv_gstore
environment:
STORAGE_USER: "dba"
Expand All @@ -15,7 +15,7 @@ services:
- ./data/gstore/git:/gstore/git
- ./data/gstore/logs:/gstore/logs
virtuoso:
image: "openlink/virtuoso-opensource-7:latest"
image: "docker.io/openlink/virtuoso-opensource-7:latest"
container_name: devenv_virtuoso
environment:
DBA_PASSWORD: "everyoneknows"
Expand Down
4 changes: 2 additions & 2 deletions docs/guides/data-download-guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,7 @@ version: '3.5'
services:
db:
image: tenforce/virtuoso
image: docker.io/tenforce/virtuoso
ports:
- 8895:8890
volumes:
Expand All @@ -254,7 +254,7 @@ services:
# and apply internal path as environment variable.
databus_client:
image: dbpedia/databus-client:latest
image: docker.io/dbpedia/databus-client:latest
environment:
- SOURCE=/databus-client/query.sparql
- ENDPOINT=https://dev.databus.dbpedia.org/sparql
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ In the `.env` file the `DATABUS_PROXY_SERVER_ENABLE` needs to be set to `true` a
```
services:
databus:
image: "dbpedia/databus"
image: "docker.io/dbpedia/databus"
ports:
...
# - 80:80 # ** uncomment if proxy enabled only** HTTP port of included proxy (caddy) necessary for Auto-HTTPS via ACME and HTTP->HTTPS redirect
Expand Down
2 changes: 1 addition & 1 deletion search/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM tomcat:9.0.35-jdk11-openjdk
FROM docker.io/tomcat:9.0.35-jdk11-openjdk

COPY ./lookup-application.war /usr/local/tomcat/webapps/
ENTRYPOINT [ "/usr/local/tomcat/bin/catalina.sh" ]
Expand Down

0 comments on commit 1ff037f

Please sign in to comment.