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