feat: Add makefile

This commit is contained in:
Glenn Y. Rolland 2022-05-08 20:40:53 +02:00
parent 1f4b9248d5
commit b9ebe9704e

View file

@ -6,10 +6,19 @@ TAG:=$(shell TZ=UTC date +"%Y%m%d")
all:
build:
docker build -t $(USERNAME)/$(IMAGE):$(TAG) .
docker-compose build
run:
# remplir ici
docker-compose up --detach
logs:
docker-compose logs -f
shell:
docker-compose exec etherpad bash
kill:
docker-compose kill
test: build
# remplir ici