Pass env-vars to functions via API gateway

This commit is contained in:
Alex Ellis
2017-05-07 09:28:19 +01:00
parent 024bd5419b
commit 9e3eaea754
2 changed files with 7 additions and 3 deletions

View File

@ -5,9 +5,9 @@ package requests
// CreateFunctionRequest create a function in the swarm.
type CreateFunctionRequest struct {
Service string `json:"service"`
Image string `json:"image"`
Network string `json:"network"`
Service string `json:"service"`
Image string `json:"image"`
Network string `json:"network"`
// EnvProcess corresponds to the fprocess variable for your container watchdog.
EnvProcess string `json:"envProcess"`