* windows adjust docker cmd
This commit is contained in:
18
bash/root-onto-workspace.sh
Normal file
18
bash/root-onto-workspace.sh
Normal file
@ -0,0 +1,18 @@
|
||||
#!/bin/bash
|
||||
. ./_docker-cmd.sh || {
|
||||
echo "no docker cmd is presented" && exit 1
|
||||
}
|
||||
|
||||
PHP_VERSION=$1 # Without dot
|
||||
|
||||
if [[ -z "${PHP_VERSION}" ]]; then PHP_VERSION=74; fi
|
||||
|
||||
CONTAINER=$(docker ps | grep workspace${PHP_VERSION} | awk '{print $1}')
|
||||
|
||||
|
||||
if [[ -z "${CONTAINER}" ]]; then
|
||||
echo "Unable to find container: workspace${PHP_VERSION}"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
$DOCKER_CMD exec -ti ${CONTAINER}
|
Reference in New Issue
Block a user