Skip to content

Commit 8e12565

Browse files
committed
feat: update OCIs to use GHCR
1 parent 5fef686 commit 8e12565

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

docs/admin-guide.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ A nilDB node consists of a MongoDB instance and a RESTful API service. Below is
137137
# docker-compose.yaml
138138
services:
139139
node-xxxx-api:
140-
image: public.ecr.aws/k5d9x2g2/nildb-api:latest # commit sha or semver
140+
image: ghcr.io/nillionnetwork/nildb:main # commit sha or semver
141141
ports:
142142
- "8080:8080"
143143
depends_on:
@@ -199,7 +199,7 @@ docker compose -f ./docker-compose.yaml stop
199199

200200
## Upgrades
201201

202-
1. Modify your image tag (e.g. `public.ecr.aws/k5d9x2g2/nildb-api:0.5.0` -> `public.ecr.aws/k5d9x2g2/nildb-api:0.6.0`)
202+
1. Modify your image tag (e.g. `ghcr.io/nillionnetwork/nildb:0.5.0` -> `ghcr.io/nillionnetwork/nildb:0.6.0`)
203203
2. Run `docker compose -f ./docker-compose.yaml up -d`
204204

205205
## Database migrations

justfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ create-buildinfo:
104104
# Build local Docker image
105105
docker-build-local: create-buildinfo
106106
docker buildx build \
107-
--tag public.ecr.aws/k5d9x2g2/nildb-api:local \
107+
--tag ghcr.io/nillionnetwork/nildb:local \
108108
--file ./packages/api/Dockerfile \
109109
.
110110

local/docker-compose.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ services:
4444
retries: 5
4545

4646
nil-anvil:
47-
image: public.ecr.aws/k5d9x2g2/nil-anvil:local
47+
image: ghcr.io/nillionnetwork/nil-anvil:main
4848
ports:
4949
- "40545:8545"
5050
healthcheck:
@@ -54,7 +54,7 @@ services:
5454
retries: 10
5555

5656
nilauth:
57-
image: public.ecr.aws/k5d9x2g2/nilauth:local
57+
image: ghcr.io/nillionnetwork/nilauth:main
5858
depends_on:
5959
postgres:
6060
condition: service_healthy

packages/api/tests/docker/docker-compose.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ services:
1717
retries: 5
1818

1919
nil-anvil:
20-
image: public.ecr.aws/k5d9x2g2/nil-anvil:local
20+
image: ghcr.io/nillionnetwork/nil-anvil:main
2121
ports:
2222
- "30545:8545"
2323
healthcheck:
@@ -27,7 +27,7 @@ services:
2727
retries: 10
2828

2929
nilauth:
30-
image: public.ecr.aws/k5d9x2g2/nilauth:local
30+
image: ghcr.io/nillionnetwork/nilauth:main
3131
depends_on:
3232
postgres:
3333
condition: service_healthy

0 commit comments

Comments
 (0)