diff --git a/Dockerfile b/Dockerfile index fae2ed2..6b9555a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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"] diff --git a/actions/check.go b/actions/check.go index 5354dd7..2916067 100644 --- a/actions/check.go +++ b/actions/check.go @@ -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 diff --git a/actions/update.go b/actions/update.go index 4d488a5..daeba96 100644 --- a/actions/update.go +++ b/actions/update.go @@ -5,7 +5,7 @@ import ( "time" log "github.com/sirupsen/logrus" - "github.com/v2tec/watchtower/container" + "github.com/kopfkrieg/watchtower/container" ) var ( diff --git a/circle.yml b/circle.yml index 6cbcc39..613fd74 100644 --- a/circle.yml +++ b/circle.yml @@ -25,4 +25,4 @@ workflows: - build: filters: tags: - only: /.*/ \ No newline at end of file + only: /.*/ diff --git a/container/filters_test.go b/container/filters_test.go index 25a0118..5db5eeb 100644 --- a/container/filters_test.go +++ b/container/filters_test.go @@ -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) { diff --git a/main.go b/main.go index 2b6fba5..0c372c8 100644 --- a/main.go +++ b/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