You've already forked docker-mailserver
mirror of
https://github.com/docker-mailserver/docker-mailserver.git
synced 2025-08-09 23:07:35 +02:00
make build
builds with cache
As `make build-no-cache` was added, it seems appropriate that `make build` should build with the cache, so I have removed the `--no-cache` option.
This commit is contained in:
4
Makefile
4
Makefile
@@ -3,13 +3,13 @@ NAME = tvial/docker-mailserver:$(BRANCH)
|
||||
|
||||
# all: build-no-cache run fixtures tests clean
|
||||
#all-no-build: run fixtures tests clean
|
||||
all: build-no-cache
|
||||
all: build-no-cache
|
||||
|
||||
build-no-cache:
|
||||
docker build --no-cache -t $(NAME) .
|
||||
|
||||
build:
|
||||
docker build --no-cache -t $(NAME) .
|
||||
docker build -t $(NAME) .
|
||||
|
||||
run:
|
||||
# Run containers
|
||||
|
Reference in New Issue
Block a user