diff options
Diffstat (limited to 'Magefile.go')
| -rw-r--r-- | Magefile.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Magefile.go b/Magefile.go index 5303b20..7895e48 100644 --- a/Magefile.go +++ b/Magefile.go @@ -67,10 +67,10 @@ func Clean() error { // DockerBuild builds the container image. func DockerBuild() error { - return sh.RunV("docker", "build", "-t", "kiss-media-player:latest", ".") + return sh.RunV("docker", "build", "-t", "player:latest", ".") } // DockerPush pushes the container image to the registry. func DockerPush() error { - return sh.RunV("docker", "push", "kiss-media-player:latest") + return sh.RunV("docker", "push", "player:latest") } |
