Advertisement
eric11144

THIRD_PARTY_DOCKER_IMAGES-Makefile

Apr 9th, 2018
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. THIRD_PARTY_DOCKER_IMAGES:= \
  2. chronograf:latest \
  3. influxdb:1.4.2
  4.  
  5. ANSIBLE_FILE_STORAGE:=/home/sunny
  6.  
  7. ## all ##########
  8. .PHONY: dist
  9. dist: $(ANSIBLE_FILE_STORAGE)/third-party-images.yml
  10. touch $@
  11. echo "---" >> $@
  12. echo "THIRD_IMAGES: " >> $@
  13. echo $(THIRD_PARTY_DOCKER_IMAGES) | tr ' ' '\n' | cut -d':' -f1 | sed "s/.*/- &,/;$ s/,//" >> $@
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement