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