6 lines
124 B
Bash
Executable File
6 lines
124 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
echo "Running nerdctl compose with file: $INPUT_FILE"
|
|
exec nerdctl compose -f "$INPUT_FILE" $INPUT_ARGS
|