feat: updgrading docker compose command to support the latest version

This commit is contained in:
Ahmed Hashim 2022-10-09 08:06:14 -04:00
parent 11e0514d33
commit ea1ee27b89

View file

@ -36,13 +36,13 @@ ent-new:
# Start the Docker containers # Start the Docker containers
.PHONY: up .PHONY: up
up: up:
docker-compose up -d docker compose up -d
sleep 3 sleep 3
# Rebuild Docker containers to wipe all data # Rebuild Docker containers to wipe all data
.PHONY: reset .PHONY: reset
reset: reset:
docker-compose down docker compose down
make up make up
# Run the application # Run the application