mirror of
https://github.com/containrrr/watchtower.git
synced 2025-12-16 15:10:12 +01:00
Changed urls from v2tec to kopfkrieg
This commit is contained in:
parent
d09bb3ca26
commit
66c768d821
6 changed files with 10 additions and 10 deletions
|
|
@ -26,7 +26,7 @@ RUN apk add --no-cache openssh-client git curl
|
|||
|
||||
RUN curl https://glide.sh/get | sh
|
||||
|
||||
WORKDIR /go/src/github.com/v2tec/watchtower
|
||||
WORKDIR /go/src/github.com/kopfkrieg/watchtower
|
||||
COPY . .
|
||||
|
||||
# RUN set -x && \
|
||||
|
|
@ -45,5 +45,5 @@ RUN apk add --no-cache \
|
|||
ca-certificates \
|
||||
tzdata
|
||||
|
||||
COPY --from=build-env /go/src/github.com/v2tec/watchtower/watchtower /
|
||||
COPY --from=build-env /go/src/github.com/kopfkrieg/watchtower/watchtower /
|
||||
ENTRYPOINT ["/watchtower"]
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@ package actions
|
|||
import (
|
||||
"sort"
|
||||
|
||||
"github.com/v2tec/watchtower/container"
|
||||
"github.com/kopfkrieg/watchtower/container"
|
||||
)
|
||||
|
||||
// CheckPrereqs will ensure that there are not multiple instances of the
|
||||
|
|
|
|||
|
|
@ -5,7 +5,7 @@ import (
|
|||
"time"
|
||||
|
||||
log "github.com/sirupsen/logrus"
|
||||
"github.com/v2tec/watchtower/container"
|
||||
"github.com/kopfkrieg/watchtower/container"
|
||||
)
|
||||
|
||||
var (
|
||||
|
|
|
|||
|
|
@ -25,4 +25,4 @@ workflows:
|
|||
- build:
|
||||
filters:
|
||||
tags:
|
||||
only: /.*/
|
||||
only: /.*/
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@ import (
|
|||
"testing"
|
||||
|
||||
"github.com/stretchr/testify/assert"
|
||||
"github.com/v2tec/watchtower/container/mocks"
|
||||
"github.com/kopfkrieg/watchtower/container/mocks"
|
||||
)
|
||||
|
||||
func TestWatchtowerContainersFilter(t *testing.T) {
|
||||
|
|
|
|||
8
main.go
8
main.go
|
|
@ -1,4 +1,4 @@
|
|||
package main // import "github.com/v2tec/watchtower"
|
||||
package main // import "github.com/kopfkrieg/watchtower"
|
||||
|
||||
import (
|
||||
"os"
|
||||
|
|
@ -11,9 +11,9 @@ import (
|
|||
"github.com/robfig/cron"
|
||||
log "github.com/sirupsen/logrus"
|
||||
"github.com/urfave/cli"
|
||||
"github.com/v2tec/watchtower/actions"
|
||||
"github.com/v2tec/watchtower/container"
|
||||
"github.com/v2tec/watchtower/notifications"
|
||||
"github.com/kopfkrieg/watchtower/actions"
|
||||
"github.com/kopfkrieg/watchtower/container"
|
||||
"github.com/kopfkrieg/watchtower/notifications"
|
||||
)
|
||||
|
||||
// DockerAPIMinVersion is the version of the docker API, which is minimally required by
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue