Skip to content

Commit 5b42a1a

Browse files
Merge pull request #41 from als-computing/install_changes
updates based on feedback
2 parents c84fed3 + 9b1a136 commit 5b42a1a

2 files changed

Lines changed: 9 additions & 2 deletions

File tree

.github/workflows/publish-image.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,12 @@ jobs:
2222
with:
2323
fetch-depth: 0
2424

25+
- name: Set up QEMU
26+
uses: docker/setup-qemu-action@29109295f81e9208d7d86ff1c6c12d2833863392
27+
28+
- name: Set up Docker Buildx
29+
uses: docker/setup-buildx-action@b5ca514318bd6ebac0fb2aedd5d36ec1b5c232a2
30+
2531
- name: Log in to the Container registry
2632
uses: docker/login-action@74a5d142397b4f367a81961eba4e8cd7edddf772
2733
with:
@@ -41,5 +47,6 @@ jobs:
4147
context: .
4248
file: Containerfile
4349
push: true
50+
platforms: linux/amd64,linux/arm64
4451
tags: ${{ steps.meta.outputs.tags }}
4552
labels: ${{ steps.meta.outputs.labels }}

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ pixi install # resolve and install the environment (first time only)
3232
pixi run serve # start the dev server at http://localhost:8080
3333
```
3434

35-
The GraphiQL IDE is available at **http://localhost:8080/graphql**.
35+
The GraphQL search tool is available at **http://localhost:8080/splash_links/graphql**.
3636

3737
Set `SPLASH_LINKS_DB` to a file path to persist data across restarts (defaults to `links.sqlite` when launched via `pixi run serve`):
3838

@@ -43,7 +43,7 @@ SPLASH_LINKS_DB=/data/links.sqlite pixi run serve
4343
### With Docker
4444

4545
```bash
46-
docker build -t splash-links .
46+
docker build -t splash-links -f Containerfile .
4747
docker run -p 8080:8080 -v $(pwd)/data:/data \
4848
-e SPLASH_LINKS_DB=/data/links.sqlite \
4949
splash-links

0 commit comments

Comments
 (0)