commit 93cf502a8dfc6a5c7139d2646af62ad4252f59e3 Author: Lauri Võsandi Date: Sat May 27 08:08:46 2023 +0300 Initial commit diff --git a/.woodpecker.yml b/.woodpecker.yml new file mode 100644 index 0000000..f26233b --- /dev/null +++ b/.woodpecker.yml @@ -0,0 +1,13 @@ +pipeline: + docker: + image: plugins/kaniko + settings: + repo: harbor.k-space.ee/${CI_REPO} + registry: harbor.k-space.ee + tags: latest + username: + from_secret: docker_username + password: + from_secret: docker_password + when: + branch: main diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..66a8576 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,3 @@ +FROM alpine +RUN apk --no-cache add transmission-daemon +ENTRYPOINT ["/usr/bin/transmission-daemon", "--foreground", "--config-dir", "/config"]