7 lines
217 B
Bash
Executable File
7 lines
217 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
# Delete all Docker artifacts (e.g. DB) from previous test runs
|
|
|
|
docker stop notatest-server notatest-psql && docker rm -f notatest-server notatest-psql
|
|
docker volume rm -f notatest_notatest-data
|