identifier; } public function GetDisplayName() : string { return $this->displayName; } public function GetContainerName() : string { return $this->containerName; } public function GetRestartPolicy() : string { return $this->restartPolicy; } public function GetImageTag() : string { return $this->imageTag; } public function GetReadOnlySetting() : bool { return $this->readOnlyRootFs; } public function GetInit() : bool { return $this->init; } public function GetShmSize() : int { return $this->shmSize; } public function isApparmorUnconfined() : bool { return $this->apparmorUnconfined; } public function GetMaxShutdownTime() : int { return $this->maxShutdownTime; } public function GetSecrets() : array { return $this->secrets; } public function GetTmpfs() : array { return $this->tmpfs; } public function GetDevices() : array { return $this->devices; } public function GetCapAdds() : array { return $this->capAdd; } public function GetBackupVolumes() : array { return $this->backupVolumes; } public function GetPorts() : ContainerPorts { return $this->ports; } public function GetInternalPort() : string { return $this->internalPorts; } public function GetVolumes() : ContainerVolumes { return $this->volumes; } public function GetRunningState() : IContainerState { return $this->dockerActionManager->GetContainerRunningState($this); } public function GetRestartingState() : IContainerState { return $this->dockerActionManager->GetContainerRestartingState($this); } public function GetUpdateState() : IContainerState { return $this->dockerActionManager->GetContainerUpdateState($this); } public function GetStartingState() : IContainerState { return $this->dockerActionManager->GetContainerStartingState($this); } /** * @return string[] */ public function GetDependsOn() : array { return $this->dependsOn; } public function GetNextcloudExecCommands() : array { return $this->nextcloudExecCommands; } public function GetEnvironmentVariables() : ContainerEnvironmentVariables { return $this->containerEnvironmentVariables; } public function GetAioVariables() : AioVariables { return $this->aioVariables; } public function GetDocumentation() : string { return $this->documentation; } }