File tree Expand file tree Collapse file tree 5 files changed +12
-8
lines changed
Expand file tree Collapse file tree 5 files changed +12
-8
lines changed Original file line number Diff line number Diff line change @@ -49,6 +49,7 @@ Here's how to get started...
4949|
5050{{- (datasource "contributor").erik }} |
5151{{- (datasource "contributor").igor }} |
52- |---|---|
52+ {{- (datasource "contributor").andriy }} |
53+ |---|---|---|
5354
5455{{ (datasource "contributor")._links }}
Original file line number Diff line number Diff line change 1- . /terraform
1+ . /terraform
2+ .idea
3+ build-harness.iml
Original file line number Diff line number Diff line change 11sudo : required
22language : go
33go :
4- - 1.7 .x
4+ - 1.9 .x
55addons :
66 apt :
77 packages :
Original file line number Diff line number Diff line change 186186 same "printed page" as the copyright notice for easier
187187 identification within third-party archives.
188188
189- Copyright {yyyy} {name of copyright owner}
189+ Copyright 2017-2018 Cloud Posse, LLC
190190
191191 Licensed under the Apache License, Version 2.0 (the "License");
192192 you may not use this file except in compliance with the License.
Original file line number Diff line number Diff line change 22## Use DOCKER_HUB_USERNAME and DOCKER_HUB_PASSWORD env variables to pass credentials
33## Login into docker hub
44docker\:login: $(DOCKER)
5- $(call assert-set,DOCKER)
6- $(call assert-set,DOCKER_HUB_USERNAME)
7- $(call assert-set,DOCKER_HUB_PASSWORD)
8- @$(DOCKER) login --username="$(DOCKER_HUB_USERNAME)" --password="$(DOCKER_HUB_PASSWORD)"
5+ @if [ -n "$DOCKER" ] && [ -n "$DOCKER_HUB_USERNAME" ] && [ -n "$DOCKER_HUB_PASSWORD" ]; then\
6+ @$(DOCKER) login --username="$(DOCKER_HUB_USERNAME)" --password="$(DOCKER_HUB_PASSWORD)";\
7+ else \
8+ echo "Skipping docker:login. Docker credentials (DOCKER_HUB_USERNAME or DOCKER_HUB_PASSWORD) are not set"; \
9+ fi;
You can’t perform that action at this time.
0 commit comments