Harvest commands from the Docker json information and add to the database.
This commit is contained in:
parent
5918082e6d
commit
e23c750bfb
6 changed files with 38 additions and 8 deletions
|
@ -167,6 +167,7 @@ class Image(BaseModel):
|
|||
checksum = CharField(null=True)
|
||||
created = DateTimeField(null=True)
|
||||
comment = TextField(null=True)
|
||||
command = TextField(null=True)
|
||||
repository = ForeignKeyField(Repository)
|
||||
image_size = BigIntegerField(null=True)
|
||||
|
||||
|
|
Reference in a new issue