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
.PHONY: up
up:
docker-compose up -d
docker compose up -d
sleep 3
# Rebuild Docker containers to wipe all data
.PHONY: reset
reset:
docker-compose down
docker compose down
make up
# Run the application