4 lines
62 B
Bash
4 lines
62 B
Bash
#!/bin/bash
|
|
docker_terminal () {
|
|
docker exec -it $1 /bin/sh
|
|
}
|