jessie is almost ready to be the new debian stable, update a few examples
no behavior changes
This commit is contained in:
parent
775d72d627
commit
b9a093c988
|
@ -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"
|
||||
|
|
|
@ -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)
|
||||
|
||||
|
|
Loading…
Reference in New Issue