Skip to content

Commit

Permalink
Specify the default container image registry docker.io so the Contain…
Browse files Browse the repository at this point in the history
…erfiles and compose files work with other container engines
white-gecko committed Feb 1, 2024
1 parent 05ac87f commit 6a9f5b0
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 && \
4 changes: 2 additions & 2 deletions devenv/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -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"
@@ -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"
4 changes: 2 additions & 2 deletions docs/guides/data-download-guide.md
Original file line number Diff line number Diff line change
@@ -240,7 +240,7 @@ version: '3.5'
services:
db:
image: tenforce/virtuoso
image: docker.io/tenforce/virtuoso
ports:
- 8895:8890
volumes:
@@ -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
Original file line number Diff line number Diff line change
@@ -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
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" ]

0 comments on commit 6a9f5b0

Please sign in to comment.