8 lines
80 B
Bash
Executable file
8 lines
80 B
Bash
Executable file
#!/bin/bash
|
|
|
|
function go {
|
|
docker-compose run --rm app go "${@}"
|
|
}
|
|
|
|
eval "$@"
|