Created
October 9, 2014 14:06
-
-
Save krak3n/625f57290e0951163e93 to your computer and use it in GitHub Desktop.
Docker SLS
This file contains hidden or 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
#!pydsl|stateconf -ps | |
include('apt-transport-https', 'python-software-properties') | |
lxc_docker = state('.lxc-docker') | |
lxc_docker.pkgrepo.managed( | |
name='deb https://get.docker.io/ubuntu docker main', | |
keyserver='hkp://keyserver.ubuntu.com:80', | |
keyid='36A1D7869245C8950F966E92D8576A8BA88D21E9') | |
lxc_docker.pkg.installed('lxc-docker') \ | |
.require(stateconf='apt-transport-https::goal') \ | |
.require(stateconf='python-software-properties::goal') | |
# vim: set ft=python ts=4 sw=4: |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment