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