Compare commits

..

19 Commits

Author SHA1 Message Date
Jonas Forsberg
ef7a1fece2 Updated tumpleweed image to 20230926, restic to 0.16.0-1.1 2023-09-29 13:50:50 +02:00
Jonas Forsberg
6196f612ed changed check update logic 2023-09-29 13:50:24 +02:00
Jonas Forsberg
c631b253c5 added git pull 2023-04-29 14:48:37 +02:00
Jonas Forsberg
42fea8c6e1 added TZ env 2023-04-20 13:24:56 +02:00
Jonas Forsberg
f6c1442dbe removed BUILD_TIME variable 2023-04-18 14:14:55 +02:00
Jonas Forsberg
56c02abe56 removed v from image.url 2023-04-18 14:12:46 +02:00
Jonas Forsberg
0124701ca5 fixed label links 2023-04-18 14:09:01 +02:00
Jonas Forsberg
1076dfaff9 fixed clean target and not showing credentials 2023-04-18 14:05:46 +02:00
Jonas Forsberg
883b06c29c bumped TW version 2023-04-18 13:59:35 +02:00
Jonas Forsberg
24143adf8a fixed clean tag to use variable 2023-04-18 13:56:01 +02:00
Jonas Forsberg
6c13328ee4 added labels to image 2023-04-18 13:53:24 +02:00
25c138ec37 first few OCI lables 2023-04-18 13:29:16 +02:00
9bd451d131 check installed verson of restic in target image 2023-04-18 10:24:57 +02:00
Jonas Forsberg
3a8dbed8db changed to private image repo 2023-04-17 19:43:44 +02:00
Jonas Forsberg
52d867d7ae more verbose tag message 2023-04-17 14:21:03 +02:00
Jonas Forsberg
23615777b7 added autobuild 2023-04-17 14:13:30 +02:00
Jonas Forsberg
f860eba8a2 fixed entrypoint and using tumbleweed version instead of restic verson as tag 2023-04-17 14:12:51 +02:00
Jonas Forsberg
a06e4e8f0a fixed tag too reflect TW version 2023-04-17 13:33:47 +02:00
Jonas Forsberg
58a2f63bbe cleaned up git clean checks 2023-04-17 13:33:20 +02:00
4 changed files with 91 additions and 18 deletions

View File

@ -1,10 +1,14 @@
FROM registry.opensuse.org/opensuse/tumbleweed:latest
ARG VERSION ARG VERSION
FROM registry.opensuse.org/opensuse/tumbleweed:${VERSION}
RUN zypper --non-interactive install \ RUN zypper --non-interactive install \
openssh-clients \ openssh-clients \
restic-${VERSION} \ restic \
&& zypper clean -a && zypper clean -a
ADD entrypoint.sh /usr/local/bin/entrypoint.sh
ENV TZ="Europe/Stockholm"
COPY entrypoint.sh /usr/local/bin/entrypoint.sh
RUN chmod +x /usr/local/bin/entrypoint.sh
ENTRYPOINT ["/usr/local/bin/entrypoint.sh"] ENTRYPOINT ["/usr/local/bin/entrypoint.sh"]
CMD ["start"]

View File

@ -1,21 +1,51 @@
.PHONY: default build clean .PHONY: default build clean release require_clean_git
-include .env -include .env
VERSION=0.15.1-1.2 VERSION=20230926
IMAGENAME=restic
REPO=git.rre.nu/jonas
TITLE=restic with openSSH based on openSUSE Tumpleweed
DESC=Image containing restic & openSSH, based on openSUSE Tumbleweed
SHELL := /bin/bash SHELL := /bin/bash
guard:
@ if [ -z "$(git status --porcelain)" ]; then echo "git repo not clean"; exit 1; fi
default: build default: build
require_clean_git:
git update-index -q --ignore-submodules --refresh
git diff-files --quiet --ignore-submodules
git diff-index --cached --quiet --ignore-submodules HEAD --
@status=$$(git status --porcelain); \
if test "x$${status}" = x; then \
echo "No untracked files detected"; \
else \
echo "Untracked files detected" >&2; \
exit 1; \
fi
build: build:
podman build --build-arg VERSION=$(VERSION) --tag docker.io/bardak/restic:$(VERSION) . podman build \
--build-arg VERSION="$(VERSION)" \
--label org.opencontainers.image.source="https://${REPO}/${IMAGENAME}/src/tag/v${VERSION}" \
--label org.opencontainers.image.title="${TITLE}" \
--label org.opencontainers.image.description="${DESC}" \
--label org.opencontainers.image.created="$(shell TZ=UTC date --iso-8601=ns)" \
--label org.opencontainers.image.url="https://${REPO}/-/packages/container/${IMAGENAME}/${VERSION}" \
--label org.opencontainers.image.version="${VERSION}" \
--label org.opencontainers.image.vendor="Jonas Forsberg" \
--tag ${REPO}/${IMAGENAME}:$(VERSION) \
.
clean: clean:
podman image rm docker.io/bardak/restic:$(VERSION) podman image rm ${REPO}/${IMAGENAME}:$(VERSION)
push: guard build release: require_clean_git build
podman push --creds $(USERNAME):$(PASSWORD) docker.io/bardak/restic:$(VERSION) $(eval TMP_MESSAGE := $(shell podman run --rm -it ${REPO}/${IMAGENAME}:$(VERSION) /usr/bin/restic --version))
git tag -a v$(VERSION) -m "restic version: ${TMP_MESSAGE}"
git push origin v$(VERSION)
podman tag ${REPO}/${IMAGENAME}:$(VERSION) ${REPO}/${IMAGENAME}:latest
@ echo "Pushing images"
@ podman push --creds $(USERNAME):$(PASSWORD) ${REPO}/${IMAGENAME}:$(VERSION)
@ podman push --creds $(USERNAME):$(PASSWORD) ${REPO}/${IMAGENAME}:latest

39
autobuild.sh Executable file
View File

@ -0,0 +1,39 @@
#!/usr/bin/env bash
set -aeou pipefail
BASE_IMAGE="registry.opensuse.org/opensuse/tumbleweed"
TARGET_REPO="git.rre.nu/jonas/"
PACKAGE_NAME="restic"
git pull
echo "Pulling latest tumbleweed"
podman pull "${BASE_IMAGE}:latest"
CURRENT_TUMBLEWEED_TAG="$(sed -n 's/.*VERSION=\([0-9]\)/\1/p' Makefile)"
LATEST_TUMBLEWEED_TAG="$(podman image inspect --format "{{.Labels}}" registry.opensuse.org/opensuse/tumbleweed:latest | sed -n 's/.*org\.opencontainers\.image\.version:\([0-9]\{8\}\).*/\1/p')"
if [[ "$CURRENT_TUMBLEWEED_TAG" == "$LATEST_TUMBLEWEED_TAG" ]]; then
echo "Already running latest tumbleweed version"
exit 0
fi
echo "New tumbleweed image exists"
if [[ "x" == "x$(podman run --rm -it ${TARGET_REPO}${PACKAGE_NAME}:latest /usr/bin/bash -c "zypper list-updates | grep $PACKAGE_NAME")" ]]; then
echo "No updates for $PACKAGE_NAME"
exit 0
fi
LATEST_VERSION="$(podman run --rm -it ${BASE_IMAGE}:latest /usr/bin/bash -c "zypper ref > /dev/null && zypper info $PACKAGE_NAME | sed -n 's/.*Version : \(.*\)$/\1/p'")"
echo "updates found : $LATEST_VERSION"
#Updateing Makefile with latest image tag
sed -i 's/VERSION='"$CURRENT_TUMBLEWEED_TAG"'/VERSION='"$LATEST_TUMBLEWEED_TAG"'/' Makefile
git add Makefile
git commit -m "Updated tumpleweed image to $LATEST_TUMBLEWEED_TAG, $PACKAGE_NAME to $LATEST_VERSION"
git push
echo "build and push new image"
make release

10
entrypoint.sh Executable file → Normal file
View File

@ -1,8 +1,8 @@
#!/bin/bash #!/usr/bin/env bash
#
if [[ "$1" == "bash" ]]; then
exec /usr/bin/bash if [[ "$1" == "start" ]]; then
/usr/bin/restic "$@"
else else
restic "$@" exec "$@"
fi fi