diff --git a/CHANGELOG.md b/CHANGELOG.md index 71fc7c5..1b8a9cf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,15 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) +## [1.11.3] - Unreleased +### Added +### Changed +### Deprecated +### Removed +### Fixed +- Reclone cron zombie processes; thanks @steinbrueckri +### Security + ## [1.11.2] - 6/29/25 ### Added - Post exec script to reclone cmd; thanks @steinbrueckri diff --git a/Dockerfile b/Dockerfile index 576cc59..7d103d0 100644 --- a/Dockerfile +++ b/Dockerfile @@ -28,7 +28,7 @@ ENV GHORG_CONFIG=/config/conf.yaml ENV GHORG_RECLONE_PATH=/config/reclone.yaml ENV GHORG_ABSOLUTE_PATH_TO_CLONE_TO=/data -RUN apk add -U --no-cache ca-certificates openssh-client tzdata git curl \ +RUN apk add -U --no-cache ca-certificates openssh-client tzdata git curl tini \ && mkdir -p /data $XDG_CONFIG_HOME \ && addgroup --gid $GID $GROUP \ && adduser -D -H --gecos "" \ @@ -51,5 +51,5 @@ COPY --from=build-image --chown=$USER:$GROUP /go/src/github.com/gabrie30/ghorg/g VOLUME /data -ENTRYPOINT ["ghorg"] +ENTRYPOINT ["/sbin/tini", "--", "ghorg"] CMD ["--help"] diff --git a/cmd/version.go b/cmd/version.go index 1f7f4df..5abe54f 100644 --- a/cmd/version.go +++ b/cmd/version.go @@ -6,7 +6,7 @@ import ( "github.com/spf13/cobra" ) -const ghorgVersion = "v1.11.2" +const ghorgVersion = "v1.11.3" var versionCmd = &cobra.Command{ Use: "version",