Repository URL to install this package:
|
Version:
0.3.30 ▾
|
from . import base
from ... import commands
class Push(base.BaseCommand):
help = 'Push Image'
arguments = (
dict(dest='repository', action='store', help='Repository to push'),
(('--tag', '-t'), dict(action='store', help='Push tag to Reghub'))
)
def run(self):
return commands.push(app=self.app, **self.kwargs)