20 lines
259 B
Makefile
20 lines
259 B
Makefile
BUILDARGS :=
|
|
IMAGE := dockermirror:5000/dpedu/pysonic
|
|
|
|
.PHONY: image
|
|
image:
|
|
docker build -t $(IMAGE) $(BUILDARGS) .
|
|
|
|
.PHONY: push
|
|
push: image
|
|
docker push $(IMAGE)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.PHONY: run-local
|
|
run-local:
|
|
pysonicd -d ./Library/ -u foo:bar -s ./db.sqlite --debug
|