this repo has no description
1
fork

Configure Feed

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

tidy commit.sh and tweak dockerfile

+1 -5
-4
commit.sh
··· 9 9 # pull latest version 10 10 git fetch --all 11 11 git reset --hard origin/main 12 - git submodule init 13 - git submodule update --recursive --remote 14 12 15 13 # restart/rebuild all containers 16 14 docker compose build --no-cache ··· 19 17 # clear out dockerfiles to stop my drive exploding 20 18 docker system prune -af 21 19 22 - # return prev state of fs 23 - git stash pop 24 20 exit 0
+1 -1
knot/Dockerfile
··· 1 - FROM golang:1.24-alpine as builder 1 + FROM golang:1.24-alpine AS builder 2 2 ENV KNOT_REPO_SCAN_PATH=/home/git/repositories 3 3 ENV CGO_ENABLED=1 4 4