Skip to content

Commit

Permalink
Update docker compose calls in run
Browse files Browse the repository at this point in the history
  • Loading branch information
gabriel-piles committed Sep 19, 2024
1 parent 3f3bac4 commit f91d5c9
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions run
Original file line number Diff line number Diff line change
Expand Up @@ -42,19 +42,19 @@ function linter {
}

function remove_docker_containers {
docker-compose ps -q | xargs docker rm
docker compose ps -q | xargs docker rm
}

function remove_docker_images {
docker-compose config --images | xargs docker rmi
docker compose config --images | xargs docker rmi
}

function start {
docker-compose up --build "${@}"
docker compose up --build "${@}"
}

function stop {
docker-compose stop
docker compose stop
}

function help {
Expand Down

0 comments on commit f91d5c9

Please sign in to comment.