Skip to content

Commit

Permalink
Merge pull request #153 from white-gecko/feature/absolute-image-names
Browse files Browse the repository at this point in the history
Use absolute image names in the docker-compose.yml file
  • Loading branch information
holycrab13 authored Dec 20, 2023
2 parents 22c2873 + 8172472 commit 0362d08
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
version: "3.0"
services:
databus:
image: "dbpedia/databus"
image: "docker.io/dbpedia/databus"
ports:
- 3000:3000 # HTTP: Databus web UI
# - 80:80 # ** uncomment if proxy enabled only** HTTP port of included proxy (caddy) necessary for Auto-HTTPS via ACME and HTTP->HTTPS redirect
Expand All @@ -28,7 +28,7 @@ services:
- ./data/tls/:/tls:ro # path for TLS (HTTPS) certs when using integrated caddy proxy
- ./data/tls/caddy:/root/.local/share/caddy/ # path for caddy settings esp. automatic TLS certificates
gstore:
image: "dbpedia/gstore"
image: "docker.io/dbpedia/gstore"
environment:
STORAGE_USER: ${VIRTUOSO_USER}
STORAGE_PASS: ${VIRTUOSO_PASSWORD}
Expand All @@ -39,7 +39,7 @@ services:
- ./data/gstore/repo:/gstore/git
- ./data/gstore/logs:/gstore/logs
virtuoso:
image: "openlink/virtuoso-opensource-7"
image: "docker.io/openlink/virtuoso-opensource-7"
environment:
DBA_PASSWORD: ${VIRTUOSO_PASSWORD}
SPARQL_UPDATE: "true"
Expand Down

0 comments on commit 0362d08

Please sign in to comment.