jessie is almost ready to be the new debian stable, update a few examples

no behavior changes
This commit is contained in:
Joey Hess 2015-04-19 09:41:40 -04:00
parent 775d72d627
commit b9a093c988
2 changed files with 3 additions and 3 deletions

View File

@ -41,8 +41,8 @@ hosts =
-- A generic webserver in a Docker container.
webserverContainer :: Docker.Container
webserverContainer = Docker.container "webserver" "joeyh/debian-stable"
& os (System (Debian (Stable "wheezy")) "amd64")
webserverContainer = Docker.container "webserver" "debian"
& os (System (Debian (Stable "jessie")) "amd64")
& Apt.stdSourcesList
& Docker.publish "80:80"
& Docker.volume "/var/www:/var/www"

View File

@ -25,7 +25,7 @@ data Distribution
deriving (Show, Eq)
-- | Debian has several rolling suites, and a number of stable releases,
-- such as Stable "wheezy".
-- such as Stable "jessie".
data DebianSuite = Experimental | Unstable | Testing | Stable Release
deriving (Show, Eq)