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.

feat: add debug-shell script for debugging the container

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

+11
+11
bin/debug-shell
··· 1 + #!/usr/bin/env bash 2 + 3 + DOCKER_CLI=${DOCKER_CLI:-"docker"} 4 + 5 + docker run --rm -it --entrypoint /bin/bash \ 6 + -v ./keys:/etc/ssh/keys \ 7 + -v ./repositories:/home/git/repositories \ 8 + -v ./server:/app \ 9 + --env-file .env.production \ 10 + registry.gitlab.com/recaptime-dev/infra/knot-server-docker \ 11 + "$@"