STACK := abra_installer_script

default: deploy

deploy:
	@docker stack rm $(STACK) && \
		docker stack deploy -c compose.yml $(STACK)
