(name: string)
| 30 | export function secretsFileName(name: string): string { |
| 31 | return `${name}-secrets.json`; |
| 32 | } |
| 33 | |
| 34 | // A volume mount's source is a named volume (vs a host bind mount) when it is not |
| 35 | // a path — bind mounts start with "." or "/". Named sources need a top-level |
| 36 | // `volumes:` declaration; bind mounts do not. |
| 37 | function namedVolumeSource(mount: string): string | null { |
no outgoing calls
no test coverage detected