8 lines
181 B
Bash
8 lines
181 B
Bash
#!/bin/sh
|
|
set -eu
|
|
|
|
APP_DIR="$(cd "$(dirname "$0")" && pwd)"
|
|
|
|
/usr/local/bin/docker rm -f photoreq >/dev/null 2>&1 || true
|
|
echo "photoreq is closed; container removed from $APP_DIR"
|