8 lines
182 B
Bash
Executable File
8 lines
182 B
Bash
Executable File
#!/bin/sh
|
|
|
|
if [ -x "$(command -v docker)" ]; then
|
|
docker compose --env-file ./prod.env down
|
|
elif [ -x "$(command -v podman)" ]; then
|
|
podman compose --env-file ./prod.env down
|
|
fi
|