8 lines
158 B
Bash
Executable file
8 lines
158 B
Bash
Executable file
#! /usr/bin/env bash
|
|
|
|
set -e
|
|
|
|
docker compose down --remove-orphans
|
|
|
|
[[ $# -eq 0 ]] || docker run --rm -v .:/tmp/x bash -vc "cd /tmp/x; ${*:-ls -la --color}"
|
|
|