option('rmi', $type); return $this; } /** * Remove named volumes declared in the volumes section of the Compose file * and anonymous volumes. */ public function volumes() { $this->option('volumes'); return $this; } /** * Remove containers for services not defined in the Compose file. */ public function removeOrphans() { $this->option('remove-orphans'); return $this; } }