Skip to content

Commit 4d6b004

Browse files
fix podman to docker
1 parent 850459a commit 4d6b004

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

Makefile

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
.PHONY = setup deps compose-up compose-down compose-destroy
33

44
# to check if docker is installed on the machine
5-
DOCKER := $(shell command -v podman)
6-
DOCKER_COMPOSE := $(shell command -v podman-compose)
5+
DOCKER := $(shell command -v docker)
6+
DOCKER_COMPOSE := $(shell command -v docker-compose)
77
deps:
88
ifndef DOCKER
99
@echo "Docker is not available. Please install docker"
@@ -20,14 +20,14 @@ setup:
2020
sh +x build
2121

2222
compose-down: deps
23-
podman volume ls
24-
podman-compose ps
25-
podman images
26-
podman-compose down;
23+
docker volume ls
24+
docker-compose ps
25+
docker images
26+
docker-compose down;
2727

2828
compose-up: deps compose-down
29-
podman-compose up --build
29+
docker-compose up --build
3030

3131
compose-destroy: deps
32-
podman images | grep -i devika | awk '{print $$3}' | xargs podman rmi -f
33-
podman volume prune
32+
docker images | grep -i devika | awk '{print $$3}' | xargs docker rmi -f
33+
docker volume prune

0 commit comments

Comments
 (0)