ift713-main-host/Makefile

13 lines
241 B
Makefile
Raw Permalink Normal View History

.PHONY: all test clean build
GID := $(shell id -g)
ID := $(shell id -u)
up:
ID=$(ID) GID=$(GID) docker compose up -d --build
down:
docker compose down
init:
docker network create ift713 --subnet "172.69.0.0/16" --gateway="172.69.1.0"