forked from locationlabs/ansible-role_docker-base
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
remove default for docker_base_extra_python_requirements and move pla…
…ce in requirements.txt to top
- Loading branch information
Ray Chetty
committed
Oct 5, 2016
1 parent
fa50bbe
commit b0991fa
Showing
2 changed files
with
5 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
{% for item in docker_base_extra_python_requirements %} | ||
{{ item }} | ||
{% endfor %} | ||
docker-py{{ '' if docker_py_version == 'latest' else ('==' + docker_py_version) }} | ||
dockerrotate=={{ docker_rotate_version }} | ||
{% if docker_compose_version is not none and docker_compose_version != '' %} | ||
docker-compose{{ '' if docker_compose_version == 'latest' else ('==' + docker_compose_version) }} | ||
{% endif %} | ||
{% for item in docker_base_extra_python_requirements %} | ||
{{ item }} | ||
{% endfor %} | ||
{% endif %} |