diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2020-02-29 19:59:22 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2020-02-29 19:59:22 +0300 |
commit | 6f6a7fb8fb81599989f9b069601f950c8f311f6a (patch) | |
tree | 0a4f4f670c4afcf93cffe0c2dc43ee5914c93055 /Makefile | |
parent | Makefile: best practices (diff) | |
download | fr24feed-6f6a7fb8fb81599989f9b069601f950c8f311f6a.tar.gz fr24feed-6f6a7fb8fb81599989f9b069601f950c8f311f6a.zip |
Makefile: style guide
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 14 |
1 files changed, 7 insertions, 7 deletions
@@ -7,19 +7,19 @@ SHELL := bash .DEFAULT_GOAL := all .SUFFIXES: -PROJECT = fr24feed +PROJECT := fr24feed # Use BuildKit, which is required: -export DOCKER_BUILDKIT = 1 +export DOCKER_BUILDKIT := 1 # Enable buildx support: -export DOCKER_CLI_EXPERIMENTAL = enabled +export DOCKER_CLI_EXPERIMENTAL := enabled # Enable BuildKit in docker-compose (requires 1.25.0 or higher): -export COMPOSE_DOCKER_CLI_BUILD = 1 +export COMPOSE_DOCKER_CLI_BUILD := 1 # Target platforms (used by buildx): -platforms = linux/i386,linux/amd64,linux/armhf +platforms := linux/i386,linux/amd64,linux/armhf # One of the latest (at the moment) Compose versions that supports BuildKit: -compose_version = 1.25.3 +compose_version := 1.25.3 # Docker Hub credentials: -DOCKER_USERNAME = egortensin +DOCKER_USERNAME := egortensin all: build |