3 lines
82 B
Bash
3 lines
82 B
Bash
|
#!/bin/bash
|
||
|
docker rm $(docker ps -a | grep ${CONTAINER_NAME} | awk '{print $1}')
|