Skip to content

Commit

Permalink
Added possibility to customize make with environment variables
Browse files Browse the repository at this point in the history
E.g.
```
 DOCKER_NETWORK=SKYNET_DEV DOCKER_IMAGE=golang DOCKER_NODE=SKY42 make
 node
 ```
  • Loading branch information
ayuryshev committed Mar 14, 2019
1 parent 99bd30a commit 4d2e0ad
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
OPTS=GO111MODULE=on
DOCKER_IMAGE=buildpack-deps:stretch-scm # docker image to use for running skywire-node. `golang` is OK too
DOCKER_NETWORK=SKYNET
DOCKER_NODE=SKY01
OPTS?=GO111MODULE=on
DOCKER_IMAGE?=buildpack-deps:stretch-scm # docker image to use for running skywire-node. `golang` is OK too
DOCKER_NETWORK?=SKYNET
DOCKER_NODE?=SKY01


build: dep apps bin
Expand Down

0 comments on commit 4d2e0ad

Please sign in to comment.