balena-supervisor/Makefile

32 lines
1.6 KiB
Makefile
Raw Normal View History

DISABLE_CACHE = 'false'
2015-03-06 18:52:54 +00:00
ARCH = rpi# rpi/x86_64/i386/armv7hf
DEPLOY_REGISTRY = registry.resindev.io:5000/
SUPERVISOR_VERSION = latest
all: supervisor
IMAGE = "resin/$(ARCH)-supervisor:$(SUPERVISOR_VERSION)"
clean:
-rm Dockerfile
supervisor:
2014-10-17 12:21:47 +00:00
cp Dockerfile.$(ARCH) Dockerfile
echo "ENV VERSION "`jq -r .version package.json` >> Dockerfile
docker build --no-cache=$(DISABLE_CACHE) -t resin/$(ARCH)-supervisor:$(SUPERVISOR_VERSION) .
-rm Dockerfile
deploy: supervisor
docker tag -f $(IMAGE) $(DEPLOY_REGISTRY)$(IMAGE)
docker push $(DEPLOY_REGISTRY)$(IMAGE)
2014-09-22 12:45:15 +00:00
run-supervisor-x86_64:
2015-01-14 17:00:13 +00:00
docker run --privileged -d -v /var/run/docker.sock:/run/docker.sock -v /boot/config.json:/boot/config.json -v /:/mnt/root -v /resin-data/resin-supervisor:/data -v /proc/net/fib_trie:/mnt/fib_trie -v /var/log/supervisor-log:/var/log -e API_ENDPOINT=https://staging.resin.io -e REGISTRY_ENDPOINT=registry.staging.resin.io -e PUBNUB_SUBSCRIBE_KEY=sub-c-bananas -e PUBNUB_PUBLISH_KEY=pub-c-bananas -e MIXPANEL_TOKEN=bananasbananas resin/x86_64-supervisor /start
2014-09-22 12:45:15 +00:00
run-supervisor-i386:
2015-01-14 17:00:13 +00:00
docker run --privileged -d -v /var/run/docker.sock:/run/docker.sock -v /boot/config.json:/boot/config.json -v /:/mnt/root -v /resin-data/resin-supervisor:/data -v /proc/net/fib_trie:/mnt/fib_trie -v /var/log/supervisor-log:/var/log -e API_ENDPOINT=https://staging.resin.io -e REGISTRY_ENDPOINT=registry.staging.resin.io -e PUBNUB_SUBSCRIBE_KEY=sub-c-bananas -e PUBNUB_PUBLISH_KEY=pub-c-bananas -e MIXPANEL_TOKEN=bananasbananas resin/i386-supervisor /start
2014-09-22 12:45:15 +00:00
.PHONY: supervisor deploy run-supervisor-x86_64 run-supervisor-i386