()
| 18 | `; |
| 19 | |
| 20 | export const validateSwarm = () => ` |
| 21 | if docker info --format '{{.Swarm.LocalNodeState}}' | grep -q 'active'; then |
| 22 | echo true |
| 23 | else |
| 24 | echo false |
| 25 | fi |
| 26 | `; |
| 27 | |
| 28 | export const validateNixpacks = () => ` |
| 29 | if command_exists nixpacks; then |