Archived
11 lines
180 B
Makefile
11 lines
180 B
Makefile
.PHONY: build run save
|
|
|
|
build:
|
|
podman build . -t localhost/n8n_helper:latest
|
|
|
|
run:
|
|
podman-compose up -d --build
|
|
|
|
save:
|
|
podman save -o n8n_helper.tar localhost/n8n_helper:latest
|