Container can be sourced

This commit is contained in:
mr
2026-06-01 08:26:48 +02:00
parent afd8a2d97c
commit 7d8bec9a78
+4 -5
View File
@@ -8,11 +8,10 @@ type PathSource struct {
} }
type Container struct { type Container struct {
Image string `json:"image,omitempty" bson:"image,omitempty"` // Image is the container image TEMPO PathSource
Command string `json:"command,omitempty" bson:"command,omitempty"` // Command is the container command
Args string `json:"args,omitempty" bson:"args,omitempty"` // Args is the container arguments Image string `json:"image,omitempty" bson:"image,omitempty"` // Image is the container image TEMPO
Env map[string]string `json:"env,omitempty" bson:"env,omitempty"` // Env is the container environment variables Command string `json:"command,omitempty" bson:"command,omitempty"` // Command is the container command
Volumes map[string]string `json:"volumes,omitempty" bson:"volumes,omitempty"` // Volumes is the container volumes
} }
type Expose struct { type Expose struct {