Skip to content

Commit

Permalink
Update repo url in docs/ci to new location
Browse files Browse the repository at this point in the history
  • Loading branch information
djperrefort committed Aug 28, 2024
1 parent 9672c42 commit 07cbe59
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/Publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ jobs:

steps:
- name: Update docs
uses: pitt-crc/keystone-docs/.github/actions/update-action/@main
uses: ${{ github.repository_owner }}/keystone-docs/.github/actions/update-action/@main
with:
keystone-gitops-id: ${{ secrets.KEYSTONE_GITOPS_ID }}
keystone-gitops-pk: ${{ secrets.KEYSTONE_GITOPS_PK }}
Expand Down
2 changes: 1 addition & 1 deletion docs/developer/common.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ The following sections outline common tasks for application developers and contr
Start by cloning the project repository from GitHub.

```bash
git clone https://github.com/pitt-crc/keystone-api
git clone https://github.com/better-hpc/keystone-api
```

Keystone-API uses [Poetry](https://python-poetry.org/docs/) to manage application dependencies.
Expand Down
8 changes: 4 additions & 4 deletions docs/install/docker.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ The following command will automatically pull and launch the latest application
In this example the image is launched as a container called `keystone` and the API is mapped to port 8000 on the local machine.

```bash
docker run --detach --publish 8000:8000 --name keystone ghcr.io/pitt-crc/keystone-api
docker run --detach --publish 8000:8000 --name keystone ghcr.io/better-hpc/keystone-api
```

The health of the running API instance can be checked by querying the API `health` endpoint.
Expand Down Expand Up @@ -81,7 +81,7 @@ services:
- postgres_data:/var/lib/postgresql/data/

api: # (3)!
image: ghcr.io/pitt-crc/keystone-api
image: ghcr.io/better-hpc/keystone-api
container_name: keystone-api
entrypoint: sh
command: |
Expand All @@ -102,7 +102,7 @@ services:
- uploaded_files:/app/upload_files

celery-worker: # (4)!
image: ghcr.io/pitt-crc/keystone-api
image: ghcr.io/better-hpc/keystone-api
container_name: keystone-celery-worker
entrypoint: celery -A keystone_api.apps.scheduler worker --uid 900
restart: always
Expand All @@ -114,7 +114,7 @@ services:
- api.env

celery-beat: # (5)!
image: ghcr.io/pitt-crc/keystone-api
image: ghcr.io/better-hpc/keystone-api
container_name: keystone-celery-beat
entrypoint: celery -A keystone_api.apps.scheduler beat --scheduler django_celery_beat.schedulers:DatabaseScheduler --uid 900
restart: always
Expand Down

0 comments on commit 07cbe59

Please sign in to comment.