feat(entrypoint): allow to override service ENTRYPOINT for run command

This commit is contained in:
Pavel Sviderski
2025-03-18 16:44:15 +10:00
parent e8715fce38
commit 1bbcfa8519
4 changed files with 34 additions and 16 deletions
+4 -1
View File
@@ -67,8 +67,11 @@ func ValidateServiceID(id string) bool {
}
type ContainerSpec struct {
// Command overrides the default CMD of the image to be executed when running a container.
Command []string
Image string
// Entrypoint overrides the default ENTRYPOINT of the image.
Entrypoint []string
Image string
// Run a custom init inside the container. If nil, use the daemon's configured settings.
Init *bool
// List of volumes to bind mount into the container.