Skip to content

Commit 77c67b4

Browse files
committed
feat: migrate to maintained watchtower fork
1 parent d5b191c commit 77c67b4

File tree

7 files changed

+19
-19
lines changed

7 files changed

+19
-19
lines changed

.github/renovate.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
{
1818
"matchPackageNames": [
1919
"watchtower",
20-
"containrrr/watchtower"
20+
"cnicholas-fedor/watchtower"
2121
],
2222
"extractVersion": "^v(?<version>\\d+\\.\\d+\\.\\d+)$"
2323
}

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,7 @@ jobs:
179179
- uses: ncipollo/release-action@b7eabc95ff50cbeeedec83973935c8f306dfcd0b # v1.20.0
180180
with:
181181
allowUpdates: true
182-
body: See https://github.com/containrrr/watchtower/releases/tag/v${{ env.VERSION }} for more changes
182+
body: See https://github.com/cnicholas-fedor/watchtower/releases/tag/v${{ env.VERSION }} for more changes
183183
commit: ${{ github.sha }}
184184
name: ${{ env.VERSION }}
185185
tag: v${{ env.VERSION }}

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1+
# docker-watchtower
2+
13
![build](https://github.com/visualon/docker-watchtower/actions/workflows/build.yml/badge.svg)
24
![GitHub](https://img.shields.io/github/license/visualon/docker-watchtower)
35
[![Renovate enabled](https://img.shields.io/badge/renovate-enabled-brightgreen.svg)](https://renovatebot.com/)
46

5-
# docker-watchtower
6-
7-
[containrrr/watchtower](/containrrr/watchtower) docker images
7+
[cnicholas-fedor/watchtower](/cnicholas-fedor/watchtower) docker images

linux/Dockerfile

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,25 @@
1-
# renovate: datasource=github-releases depName=watchtower packageName=containrrr/watchtower
2-
ARG WATCHTOWER_VERSION=1.7.1
1+
# renovate: datasource=github-releases depName=watchtower packageName=nicholas-fedor/watchtower
2+
ARG WATCHTOWER_VERSION=1.7.2
33

44
FROM alpine:3.22@sha256:4b7ce07002c69e8f3d704a9c5d6fd3053be500b7f1c69fc0d80990c2ad8dd412 as base
55

66
#=================
77
# build
88
#=================
9-
FROM base as build
9+
FROM base AS build
1010

1111
RUN apk add --no-cache curl
1212

1313
ARG WATCHTOWER_VERSION
1414
RUN set -ex; \
15-
curl -sSfLo file.tgz https://github.com/containrrr/watchtower/releases/download/v${WATCHTOWER_VERSION}/watchtower_linux_amd64.tar.gz; \
15+
curl -sSfLo file.tgz https://github.com/nicholas-fedor/watchtower/releases/download/v${WATCHTOWER_VERSION}/watchtower_linux_amd64.tar.gz; \
1616
tar -C /bin -xzf file.tgz; \
1717
watchtower --help
1818

1919
#=================
2020
# final
2121
#=================
22-
FROM base as final
22+
FROM base AS final
2323

2424
RUN apk add --no-cache ca-certificates tzdata dumb-init
2525

windows/Dockerfile.2019

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
# escape=`
22

3-
# renovate: datasource=github-releases depName=watchtower packageName=containrrr/watchtower
4-
ARG WATCHTOWER_VERSION=1.7.1
3+
# renovate: datasource=github-releases depName=watchtower packageName=nicholas-fedor/watchtower
4+
ARG WATCHTOWER_VERSION=1.7.2
55

66
FROM mcr.microsoft.com/windows/nanoserver:ltsc2025@sha256:2c49bcfc2b32e56ef272c3ab4bb77a7653dd617d3a0c1d3afdfc7d67d971c739 AS build
77

88
ARG WATCHTOWER_VERSION
99
RUN `
1010
mkdir tmp && mkdir bin`
11-
&& curl -sSfLo tmp/file.zip https://github.com/containrrr/watchtower/releases/download/v%WATCHTOWER_VERSION%/watchtower_windows_amd64.zip `
11+
&& curl -sSfLo tmp/file.zip https://github.com/nicholas-fedor/watchtower/releases/download/v%WATCHTOWER_VERSION%/watchtower_windows_amd64.zip `
1212
&& tar -C c:\bin -oxzf tmp/file.zip watchtower.exe`
1313
&& /bin/watchtower --help
1414

windows/Dockerfile.2022

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
# escape=`
22

3-
# renovate: datasource=github-releases depName=watchtower packageName=containrrr/watchtower
4-
ARG WATCHTOWER_VERSION=1.7.1
3+
# renovate: datasource=github-releases depName=watchtower packageName=nicholas-fedor/watchtower
4+
ARG WATCHTOWER_VERSION=1.7.2
55

66
FROM mcr.microsoft.com/windows/nanoserver:ltsc2025@sha256:2c49bcfc2b32e56ef272c3ab4bb77a7653dd617d3a0c1d3afdfc7d67d971c739 AS build
77

88
ARG WATCHTOWER_VERSION
99
RUN `
1010
mkdir tmp && mkdir bin`
11-
&& curl -sSfLo tmp/file.zip https://github.com/containrrr/watchtower/releases/download/v%WATCHTOWER_VERSION%/watchtower_windows_amd64.zip `
11+
&& curl -sSfLo tmp/file.zip https://github.com/nicholas-fedor/watchtower/releases/download/v%WATCHTOWER_VERSION%/watchtower_windows_amd64.zip `
1212
&& tar -C c:\bin -oxzf tmp/file.zip watchtower.exe`
1313
&& /bin/watchtower --help
1414

windows/Dockerfile.2025

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
# escape=`
22

3-
# renovate: datasource=github-releases depName=watchtower packageName=containrrr/watchtower
4-
ARG WATCHTOWER_VERSION=1.7.1
3+
# renovate: datasource=github-releases depName=watchtower packageName=nicholas-fedor/watchtower
4+
ARG WATCHTOWER_VERSION=1.7.2
55

66
FROM mcr.microsoft.com/windows/nanoserver:ltsc2025@sha256:2c49bcfc2b32e56ef272c3ab4bb77a7653dd617d3a0c1d3afdfc7d67d971c739 AS build
77

88
ARG WATCHTOWER_VERSION
99
RUN `
1010
mkdir tmp && mkdir bin`
11-
&& curl -sSfLo tmp/file.zip https://github.com/containrrr/watchtower/releases/download/v%WATCHTOWER_VERSION%/watchtower_windows_amd64.zip `
11+
&& curl -sSfLo tmp/file.zip https://github.com/cnicholas-fedor/watchtower/releases/download/v%WATCHTOWER_VERSION%/watchtower_windows_amd64.zip `
1212
&& tar -C c:\bin -oxzf tmp/file.zip watchtower.exe`
1313
&& /bin/watchtower --help
1414

0 commit comments

Comments
 (0)