From 21eeab35eb8d4036f8f48951d6261a3af65ff17e Mon Sep 17 00:00:00 2001 From: Joey Hess Date: Thu, 8 Jan 2015 15:30:11 -0400 Subject: [PATCH] propellor spin --- config-joey.hs | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/config-joey.hs b/config-joey.hs index d2dbbb6..c432695 100644 --- a/config-joey.hs +++ b/config-joey.hs @@ -311,6 +311,7 @@ elephant = standardSystem "elephant.kitenet.net" Unstable "amd64" & Docker.docked openidProvider `requires` Apt.serviceInstalledRunning "ntp" & Docker.docked ancientKitenet + & Docker.docked jerryPlay & Docker.garbageCollected `period` (Weekly (Just 1)) -- For https port 443, shellinabox with ssh login to @@ -367,6 +368,14 @@ gitAnnexAndroidDev = GitAnnexBuilder.androidContainer dockerImage "android-git-a & Docker.volume ("/home/joey/src/git-annex:" ++ gitannexdir) where gitannexdir = GitAnnexBuilder.homedir "git-annex" + +jerryPlay :: Docker.Container +jerryPlay = standardContainer "jerryplay" Unstable "amd64" + & alias "jerryplay.kitenet.net" + & Docker.publish "2202:22" + & Docker.publish "8001:80" + & Apt.installed ["ssh"] + & User.hasSomePassword "root" type Motd = [String]