This repository has been archived on 2020-09-29. You can view files and clone it, but cannot push or open issues or pull requests.
traefik.autonomic.zone/Makefile

13 lines
185 B
Makefile

STACK := traefik
COMPOSE_FILE := docker-compose.yml
default: deploy
deploy:
@docker stack deploy -c $(COMPOSE_FILE) $(STACK)
down:
@docker stack rm $(STACK)
.PHONY: deploy