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