42_Inception/Makefile
2023-10-04 10:01:11 -04:00

12 lines
151 B
Makefile

USERNAME = cchauvet
all: up
build:
docker build -t ${USERNAME}/nginx srcs/nginx/
run:
docker-compose up -d srcs/docker-compose.yml
up: build run