1
0
mirror of https://github.com/mveril/qp-demo synced 2024-06-02 11:25:27 +02:00
qp-demo/Makefile

23 lines
392 B
Makefile
Raw Permalink Normal View History

2021-05-23 17:37:25 +02:00
IMAGE = mveril/qp_demo
2019-11-06 14:40:50 +01:00
NETWORK = demo-net
default:
docker build -t $(IMAGE) .
no-cache:
docker build -t $(IMAGE) --no-cache .
network:
docker network create -o "com.docker.network.bridge.enable_icc"="false" $(NETWORK)
network-clean:
docker network rm $(NETWORK)
image-clean:
docker image rm $(IMAGE)
clean: network-clean image-clean
test:
docker run -h qp-demo --rm -it $(IMAGE)