Skip to content

Commit

Permalink
Adding fig to provisioning script
Browse files Browse the repository at this point in the history
  • Loading branch information
atbaker committed Apr 29, 2014
1 parent a605018 commit 583121e
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 2 deletions.
8 changes: 8 additions & 0 deletions ansible/roles/docker/tasks/install_fig.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
---
# Install Fig

- name: Install pip
apt: pkg=python-pip state=present

- name: Install fig
pip: name=fig state=present
3 changes: 1 addition & 2 deletions ansible/roles/docker/tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,4 @@
apt: update_cache=yes cache_valid_time=3600

- include: install_docker.yml
# - include: install_spin_docker.yml
# - include: pull_images.yml
- include: install_fig.yml
1 change: 1 addition & 0 deletions intro/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# Example dockerfile for a Two Scoops-style Django project
# https://github.com/atbaker/docker-tutorial | https://github.com/twoscoops/django-twoscoops-project

# All Dockerfiles start from a base image. In this case, Ubuntu 12.04 LTS
FROM ubuntu:precise

# Add yourself as maintainer
Expand Down

0 comments on commit 583121e

Please sign in to comment.