Skip to content

Commit cbb87a0

Browse files
committed
Doc updates
1 parent 23f25a6 commit cbb87a0

File tree

1 file changed

+7
-6
lines changed

1 file changed

+7
-6
lines changed

Makefile

+7-6
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,11 @@ RUN=run
2020
#
2121
# Docker Compose options
2222
#
23-
COMPOSE_PROJECT_NAME ?= ollama
24-
COMPOSE_DOWN_TIMEOUT ?= 30
25-
COMPOSE_DOWN_OPTIONS ?= --timeout $(COMPOSE_DOWN_TIMEOUT) --volumes
26-
COMPOSE_UP_OPTIONS ?= --detach
27-
COMPOSE_LOGS_OPTIONS ?= --follow
23+
COMPOSE_PROJECT_NAME ?= ollama
24+
COMPOSE_DOWN_TIMEOUT ?= 30
25+
COMPOSE_DOWN_OPTIONS ?= --timeout $(COMPOSE_DOWN_TIMEOUT) --volumes
26+
COMPOSE_UP_OPTIONS ?= --detach
27+
COMPOSE_LOGS_OPTIONS ?= --follow
2828

2929
#
3030
# Build dependencies
@@ -46,7 +46,8 @@ $(ALL): $(UP)
4646
# $(BUILD_DEPENDS): Ensure build dependencies are installed.
4747
#
4848
$(BUILD_DEPENDS):
49-
$(foreach exe,$(DEPENDENCIES), $(if $(shell which $(exe) 2> /dev/null),,$(error "No $(exe) in PATH")))
49+
$(foreach exe,$(DEPENDENCIES),
50+
$(if $(shell which $(exe) 2> /dev/null),,$(error "No $(exe) in PATH")))
5051

5152
#
5253
# $(DOWN): Stops containers and removes containers, networks, and volumes.

0 commit comments

Comments
 (0)