Changed urls from v2tec to kopfkrieg

This commit is contained in:
KopfKrieg 2019-01-27 15:51:01 +01:00
parent d09bb3ca26
commit 66c768d821
6 changed files with 10 additions and 10 deletions

View file

@ -26,7 +26,7 @@ RUN apk add --no-cache openssh-client git curl
RUN curl https://glide.sh/get | sh RUN curl https://glide.sh/get | sh
WORKDIR /go/src/github.com/v2tec/watchtower WORKDIR /go/src/github.com/kopfkrieg/watchtower
COPY . . COPY . .
# RUN set -x && \ # RUN set -x && \
@ -45,5 +45,5 @@ RUN apk add --no-cache \
ca-certificates \ ca-certificates \
tzdata 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"] ENTRYPOINT ["/watchtower"]

View file

@ -3,7 +3,7 @@ package actions
import ( import (
"sort" "sort"
"github.com/v2tec/watchtower/container" "github.com/kopfkrieg/watchtower/container"
) )
// CheckPrereqs will ensure that there are not multiple instances of the // CheckPrereqs will ensure that there are not multiple instances of the

View file

@ -5,7 +5,7 @@ import (
"time" "time"
log "github.com/sirupsen/logrus" log "github.com/sirupsen/logrus"
"github.com/v2tec/watchtower/container" "github.com/kopfkrieg/watchtower/container"
) )
var ( var (

View file

@ -4,7 +4,7 @@ import (
"testing" "testing"
"github.com/stretchr/testify/assert" "github.com/stretchr/testify/assert"
"github.com/v2tec/watchtower/container/mocks" "github.com/kopfkrieg/watchtower/container/mocks"
) )
func TestWatchtowerContainersFilter(t *testing.T) { func TestWatchtowerContainersFilter(t *testing.T) {

View file

@ -1,4 +1,4 @@
package main // import "github.com/v2tec/watchtower" package main // import "github.com/kopfkrieg/watchtower"
import ( import (
"os" "os"
@ -11,9 +11,9 @@ import (
"github.com/robfig/cron" "github.com/robfig/cron"
log "github.com/sirupsen/logrus" log "github.com/sirupsen/logrus"
"github.com/urfave/cli" "github.com/urfave/cli"
"github.com/v2tec/watchtower/actions" "github.com/kopfkrieg/watchtower/actions"
"github.com/v2tec/watchtower/container" "github.com/kopfkrieg/watchtower/container"
"github.com/v2tec/watchtower/notifications" "github.com/kopfkrieg/watchtower/notifications"
) )
// DockerAPIMinVersion is the version of the docker API, which is minimally required by // DockerAPIMinVersion is the version of the docker API, which is minimally required by