Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ FROM ${RUNTIME_IMAGE}
COPY --from=build /out/nexus-proxy /usr/local/bin/nexus-proxy
COPY --from=build /out/nexus-proxy-healthcheck /usr/local/bin/nexus-proxy-healthcheck
COPY --from=build --chown=nonroot:nonroot /out/state /var/lib/nexus-proxy
COPY THIRD_PARTY_NOTICES.md /usr/share/doc/nexus-local-proxy/THIRD_PARTY_NOTICES.md
COPY THIRD_PARTY_NOTICES.md /usr/share/doc/nexus-proxy/THIRD_PARTY_NOTICES.md

USER nonroot:nonroot
EXPOSE 3301
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Cloudflare.
Configure DAppNode applications with:

```text
Base URL: http://nexus-local-proxy.dappnode.private:3301/v1
Base URL: http://nexus-proxy.dappnode.private:3301/v1
API key: the application's normal Nexus API key
API: OpenAI Chat Completions
```
Expand All @@ -26,7 +26,7 @@ republished:
```json
{
"dependencies": {
"nexus-local-proxy.dnp.dappnode.eth": "^0.1.0"
"nexus-proxy.dnp.dappnode.eth": "^0.1.0"
}
}
```
Expand All @@ -49,7 +49,7 @@ The package serves a page showing whether the Gateway is currently verified and
what was checked:

```text
http://nexus-local-proxy.dappnode.private:3301/verification
http://nexus-proxy.dappnode.private:3301/verification
```

It reports the verdict in plain language, lists the checks the proxy performed
Expand Down
12 changes: 6 additions & 6 deletions dappnode_package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "nexus-local-proxy.dnp.dappnode.eth",
"version": "0.2.0",
"upstreamVersion": "d226fca7a37b2a0f556642844f2ec2aafa19d9ca",
"name": "nexus-proxy.dnp.dappnode.eth",
"version": "0.1.0",
"upstreamVersion": "219977388b9f26435c2529fc1cd52ff7229e5397",
"upstreamRepo": "dappnode/dappnode-nexus-sdk",
"upstreamArg": "UPSTREAM_VERSION",
"shortDescription": "Attested private AI proxy for DAppNode applications",
Expand All @@ -13,7 +13,7 @@
"path": "/var/lib/nexus-proxy"
}
],
"mainService": "nexus-local-proxy",
"mainService": "nexus-proxy",
"architectures": [
"linux/amd64",
"linux/arm64"
Expand All @@ -38,10 +38,10 @@
"author": "DAppNode Association <admin@dappnode.io> (https://github.com/dappnode)",
"repository": {
"type": "git",
"url": "https://github.com/dappnode/DAppNodePackage-nexus-local-proxy"
"url": "https://github.com/dappnode/DNP_NEXUS_PROXY"
},
"bugs": {
"url": "https://github.com/dappnode/DAppNodePackage-nexus-local-proxy/issues"
"url": "https://github.com/dappnode/DNP_NEXUS_PROXY/issues"
},
"license": "MIT",
"warnings": {
Expand Down
8 changes: 4 additions & 4 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
version: "3.5"

services:
nexus-local-proxy:
nexus-proxy:
build:
context: .
dockerfile: Dockerfile
args:
UPSTREAM_VERSION: d226fca7a37b2a0f556642844f2ec2aafa19d9ca
UPSTREAM_VERSION: 219977388b9f26435c2529fc1cd52ff7229e5397
secrets:
- github_token
image: nexus-local-proxy.dnp.dappnode.eth:0.2.0
container_name: DAppNodePackage-nexus-local-proxy.dnp.dappnode.eth
image: nexus-proxy.dnp.dappnode.eth:0.1.0
container_name: DAppNodeCore-nexus-proxy.dnp.dappnode.eth
restart: unless-stopped
command:
- --gateway-url
Expand Down
Loading