Docker

Docker

Made by DeepSource

Use of &; detected DOK-SC1045

Anti-pattern
Minor

Both & and ; terminate the command. You should only use one of them.

Bad Practice

foo &; bar

Recommended

foo & bar