Skip to content

Commit 85d53c9

Browse files
committed
Fix Docker image references in CI workflow and README to use correct naming convention
1 parent 74dbdbb commit 85d53c9

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/workflows/docker.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ jobs:
4747
docker rm test-container
4848
4949
- name: Build Docker image
50-
run: docker build . --file Dockerfile --tag virtualflybrain/owlery-cache:${{ steps.meta.outputs.tag }}
50+
run: docker build . --file Dockerfile --tag virtualflybrain/owl_cache:${{ steps.meta.outputs.tag }}
5151

5252
- name: Login to Docker Hub
5353
uses: docker/login-action@v3
@@ -56,4 +56,4 @@ jobs:
5656
password: ${{ secrets.DOCKER_HUB_PASSWORD }}
5757

5858
- name: Push Docker image
59-
run: docker push virtualflybrain/owlery-cache:${{ steps.meta.outputs.tag }}
59+
run: docker push virtualflybrain/owl_cache:${{ steps.meta.outputs.tag }}

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# NGINX Caching Proxy for Owlery
22

3-
[![Docker Image](https://img.shields.io/badge/docker-virtualflybrain%2Fowlery--cache-blue)](https://hub.docker.com/r/virtualflybrain/owlery-cache)
3+
[![Docker Image](https://img.shields.io/badge/docker-virtualflybrain%2Fowl_cache-blue)](https://hub.docker.com/r/virtualflybrain/owl_cache)
44

55
A high-performance caching proxy server that sits in front of OWL reasoning services to dramatically speed up query responses. Built on NGINX Alpine with 90-day cache TTL and stale-while-revalidate pattern.
66

@@ -10,7 +10,7 @@ A high-performance caching proxy server that sits in front of OWL reasoning serv
1010

1111
```bash
1212
# Start the proxy
13-
docker run -d --name owl-cache -p 80:80 virtualflybrain/owlery-cache:latest
13+
docker run -d --name owl-cache -p 80:80 virtualflybrain/owl_cache:latest
1414

1515
# Make a query (will be slow first time)
1616
curl "http://localhost/kbs/vfb/instances?object=<http://purl.obolibrary.org/obo/FBbt_00005106>"
@@ -25,7 +25,7 @@ curl "http://localhost/kbs/vfb/instances?object=<http://purl.obolibrary.org/obo/
2525
version: '3.8'
2626
services:
2727
owl-cache:
28-
image: virtualflybrain/owlery-cache:latest
28+
image: virtualflybrain/owl_cache:latest
2929
ports:
3030
- "80:80"
3131
environment:
@@ -92,7 +92,7 @@ The proxy adds helpful headers to responses:
9292

9393
```bash
9494
# Pull image
95-
docker pull virtualflybrain/owlery-cache:latest
95+
docker pull virtualflybrain/owl_cache:latest
9696

9797
# Create cache directory
9898
mkdir -p /cache

0 commit comments

Comments
 (0)