12 lines
241 B
Makefile
12 lines
241 B
Makefile
.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"
|