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 12a177a215
commit 7f1e057ea2
No known key found for this signature in database
GPG key ID: 2E746699667C1969

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