7 lines
100 B
Bash
7 lines
100 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
# Stop and remove test enviornment
|
||
|
docker stop test-web && docker rm test-web
|
||
|
|
||
|
exit 0
|