diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2020-05-07 02:26:57 +0000 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2020-05-07 02:26:57 +0000 |
commit | 1671a13dd022582ee5c4476091e99bb265cb3cc0 (patch) | |
tree | 568531f94cf83c9471d5337155ac1670a25595ad /Makefile | |
parent | README: update (diff) | |
download | jekyll-docker-1671a13dd022582ee5c4476091e99bb265cb3cc0.tar.gz jekyll-docker-1671a13dd022582ee5c4476091e99bb265cb3cc0.zip |
docker-compose: don't use --env-file
It requires a relatively new docker-compose version, and it should be
picked up anyway.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -126,7 +126,7 @@ JEKYLL_UID ?= $(shell id -u) JEKYLL_GID ?= $(shell id -g) export JEKYLL_UID JEKYLL_GID -docker_compose := cd -- '$(makefile_dir)' && PROJECT_DIR='$(abspath $(PROJECT_DIR))' docker-compose --env-file ./.env +docker_compose := cd -- '$(makefile_dir)' && PROJECT_DIR='$(abspath $(PROJECT_DIR))' docker-compose .PHONY: docker/build docker/build: |