openhab: config perms shared between docker / host

This commit is contained in:
theBigBlase 2023-12-17 13:37:42 -05:00
parent a24a3e1694
commit e880a09ba8
24 changed files with 283 additions and 469 deletions

View file

@ -1,7 +1,12 @@
.PHONY: all test clean build
ID := $(shell id -u)
GID := $(shell id -g)
ID := $(shell id -u)
all:
ID=$(ID) GID=$(GID) docker compose up -d
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"