11 lines
282 B
Bash
Executable File
11 lines
282 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
# shellcheck source=../lib/common.sh
|
|
source "$(dirname "$0")/../lib/common.sh"
|
|
# shellcheck source=../lib/docker.sh
|
|
source "$(dirname "$0")/../lib/docker.sh"
|
|
|
|
require_container "$LM_CONTAINER"
|
|
exec "${DOCKER[@]}" exec -it "$LM_CONTAINER" bash
|