mirror of
https://github.com/ENSL/ensl.org.git
synced 2024-11-14 08:50:44 +00:00
6b2f644352
With docker-compose and mariadb
29 lines
516 B
Makefile
29 lines
516 B
Makefile
REGISTRY ?= ensl
|
|
PROJECT ?= ensl.org
|
|
TAG ?= latest
|
|
|
|
ifdef REGISTRY
|
|
IMAGE=$(REGISTRY)/$(PROJECT):$(TAG)
|
|
else
|
|
IMAGE=$(PROJECT):$(TAG)
|
|
endif
|
|
|
|
all:
|
|
@echo "Available targets:"
|
|
@echo " * build - build a Docker image for $(IMAGE)"
|
|
@echo " * pull - pull $(IMAGE)"
|
|
@echo " * push - push $(IMAGE)"
|
|
@echo " * test - build and test $(IMAGE)"
|
|
|
|
build: Dockerfile
|
|
docker build -t $(IMAGE) .
|
|
|
|
pull:
|
|
docker pull $(IMAGE) || true
|
|
|
|
push:
|
|
docker push $(IMAGE)
|
|
|
|
test: build
|
|
fig run web ./env/test.sh ./test.sh
|
|
|