2017-06-29 10:24:18 +00:00
|
|
|
package control
|
|
|
|
|
2017-10-01 18:42:17 +00:00
|
|
|
type Service struct {
|
2017-07-30 18:05:06 +00:00
|
|
|
server *Server
|
2017-06-29 10:24:18 +00:00
|
|
|
|
2017-07-30 18:05:06 +00:00
|
|
|
// EnvironmentName is the name of the environment used by the service
|
2018-02-20 22:38:29 +00:00
|
|
|
EnvironmentName string `json:"environmentName" jsonapi:"primary,service"`
|
2017-07-30 18:05:06 +00:00
|
|
|
|
2018-02-20 22:38:29 +00:00
|
|
|
DockerImage string `json:"dockerImage" jsonapi:"attr,docker_image"`
|
2017-06-29 10:24:18 +00:00
|
|
|
}
|