Docker config for @recaptime.dev's Knot server on Hack Club Nest. knot.hackclub.community
2
fork

Configure Feed

Select the types of activity you want to include in your feed.

chore: update docs and then some

Signed-off-by: Andrei Jiroh Halili <ajhalili2006@andreijiroh.dev>

+9 -1
+7
.vscode/settings.json
··· 1 + { 2 + "markdown.validate.enabled": true, 3 + "git.alwaysSignOff": true, 4 + "[markdown]": { 5 + "editor.defaultFormatter": "DavidAnson.vscode-markdownlint" 6 + } 7 + }
+1 -1
Dockerfile
··· 8 8 9 9 WORKDIR /app 10 10 RUN apk add git gcc musl-dev 11 - RUN git clone -b ${KNOT_RELEASE_TAG} ${REPO_URL} . \ 11 + RUN git clone -b ${KNOT_RELEASE_TAG} ${KNOT_REPO_URL} . \ 12 12 && go build -o /usr/bin/knot -ldflags '-s -w -extldflags "-static"' ./cmd/knot \ 13 13 && git rev-parse HEAD > commit-sha.txt 14 14
+1
readme.md
··· 25 25 * [View our GitLab CI config](./.gitlab-ci.yaml) 26 26 * [View tags on GitLab Container Registry](https://gitlab.com/recaptime-dev/infra/knot-server-docker/container_registry/9481789) 27 27 * Run using built images after `ssh recaptime-dev@hackclub.app`: `<docker|podman> compose up --no-build --force-recreate` 28 + * Get build information: `<docker|podman> compose exec knot knotserver-version` 28 29 29 30 ## Requesting access 30 31