mirror of
https://github.com/neilotoole/sq.git
synced 2024-11-24 03:45:56 +03:00
10 lines
173 B
Bash
10 lines
173 B
Bash
|
#!/usr/bin/env bash
|
||
|
|
||
|
# This script stops the containers started by sakila-start-local.sh
|
||
|
|
||
|
set +e
|
||
|
|
||
|
docker rm -f sakiladb-pg
|
||
|
docker rm -f sakiladb-az
|
||
|
docker rm -f sakiladb-my
|