Image Host Entry¶
Create custom host entries (/etc/hosts) that link to other linked images that will be deployed along side this image. This is intended to support backwards compatibility with docker compose.
- Collaborations
- Environmental Param
- Host Entry
- Ingress Params
- Image Providers
- Relationships
- Setting Params
- Image Variants
- Volumes
List all host entries¶
GET /api/container_images/{container-image-id}/custom_host_entries
OAuth Authorization Required: images_read, public
Schema
host_entries: Arrayhostname: Stringsource_image: Objectid: Integerlabel: String
created_at: DateTimeupdated_at: DateTime
View host entry¶
GET /api/container_images/{container-image-id}/custom_host_entries/{id}
OAuth Authorization Required: images_read, public
Schema
host_entries: Objecthostname: Stringsource_image: Objectid: Integerlabel: String
created_at: DateTimeupdated_at: DateTime
Update host entry¶
PATCH /api/container_images/{container-image-id}/custom_host_entries/{id}
OAuth Authorization Required: images_write
Schema
host_entry: Objecthostname: Stringsource_image_id: Integer
Create host entry¶
POST /api/container_images/{container-image-id}/custom_host_entries
OAuth Authorization Required: images_write
Schema
host_entry: Objecthostname: Stringsource_image_id: Integer
Delete host entry¶
DELETE /api/container_images/{container-image-id}/custom_host_entries/{id}
OAuth Authorization Required: images_write