8 lines
122 B
Makefile
8 lines
122 B
Makefile
|
.PHONY: all test clean build
|
||
|
|
||
|
ID := $(shell id -u)
|
||
|
GID := $(shell id -g)
|
||
|
|
||
|
all:
|
||
|
ID=$(ID) GID=$(GID) docker compose up -d
|