Skip to content

Commit

Permalink
add short_description
Browse files Browse the repository at this point in the history
  • Loading branch information
Christian Glatthard committed Aug 12, 2015
1 parent eac2120 commit 45fc5d4
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion ipynbsrv/core/signals/containers.py
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,8 @@ def create_on_server(sender, container, **kwargs):
image = ContainerImage(
backend_pk=backend_image.get(ContainerBackend.KEY_PK),
name=container.clone_of.image.name + '-clone-' + str(int(time.time())),
description="Internal only image created during the cloning process of container %s." % container.clone_of.get_friendly_name(),
short_description="Internal only image created during the cloning process of container %s." % container.clone_of.get_friendly_name(),
description=container.clone_of.image.description
command=container.clone_of.image.command,
protected_port=container.clone_of.image.protected_port,
public_ports=container.clone_of.image.public_ports,
Expand Down

0 comments on commit 45fc5d4

Please sign in to comment.