propellor spin

This commit is contained in:
Joey Hess 2015-01-08 15:30:11 -04:00
parent 16a5f561f5
commit 21eeab35eb
Failed to extract signature
1 changed files with 9 additions and 0 deletions

View File

@ -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]