42_Inception/Makefile

12 lines
151 B
Makefile
Raw Normal View History

2023-10-04 10:01:11 -04:00
USERNAME = cchauvet
all: up
build:
docker build -t ${USERNAME}/nginx srcs/nginx/
run:
docker-compose up -d srcs/docker-compose.yml
up: build run