init: nginx

This commit is contained in:
2023-10-04 10:01:11 -04:00
commit 6dffb97678
4 changed files with 53 additions and 0 deletions

11
Makefile Normal file
View File

@ -0,0 +1,11 @@
USERNAME = cchauvet
all: up
build:
docker build -t ${USERNAME}/nginx srcs/nginx/
run:
docker-compose up -d srcs/docker-compose.yml
up: build run