mirror of
https://github.com/nprasad2077/NBA_Go.git
synced 2026-09-22 22:15:13 +00:00
10 lines
210 B
Makefile
10 lines
210 B
Makefile
# Tells 'make' these are command names, not files
|
|
.PHONY: up down
|
|
|
|
# Command to run: make up
|
|
up:
|
|
docker-compose -f docker-compose.local.yml up --build -d
|
|
|
|
# Command to run: make down
|
|
down:
|
|
docker-compose down
|