8 lines
185 B
Fish
8 lines
185 B
Fish
set -gx CONTAINER_ENGINE "podman"
|
|
set -gx CONTAINER_COMPOSE "podman-compose"
|
|
|
|
function redeploy
|
|
$CONTAINER_COMPOSE down
|
|
$CONTAINER_COMPOSE pull
|
|
$CONTAINER_COMPOSE up -d
|
|
end
|