this repo has no description
1
fork

Configure Feed

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

feat: add Dockerfile

june edbd39cb 9ebbbde8

+8 -1
+5
Dockerfile
··· 1 + FROM alpine:latest 2 + RUN apk add --no-cache bash openssh rsync 3 + COPY ebil.sh /usr/local/bin/ebil 4 + RUN chmod +x /usr/local/bin/ebil 5 + LABEL org.opencontainers.image.source=https://codeberg.org/comfysage/ebil
+1 -1
ebil.sh
··· 74 74 rsync -rltzq --progress "$@" "$src/" "$dst" 75 75 } 76 76 77 - push() {^[a-z]+\.ebil\.club$ 77 + push() { 78 78 local site="$1" 79 79 local path="$2" 80 80 local host="$3"
+2
nix/shell.nix
··· 2 2 mkShellNoCC, 3 3 shellcheck, 4 4 shfmt, 5 + docker, 5 6 }: 6 7 mkShellNoCC { 7 8 packages = [ 8 9 shellcheck 9 10 shfmt 11 + docker 10 12 ]; 11 13 }