summaryrefslogtreecommitdiff
path: root/config.hs
diff options
context:
space:
mode:
Diffstat (limited to 'config.hs')
-rw-r--r--config.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/config.hs b/config.hs
index 8c7422b2..bbd45b4e 100644
--- a/config.hs
+++ b/config.hs
@@ -55,7 +55,7 @@ host _ = Nothing
-- can vary by hostname where it's used, or be the same everywhere.
container :: HostName -> Docker.ContainerName -> Maybe (Docker.Container)
container _ "webserver" = Just $ Docker.containerFrom "joeyh/debian-unstable"
- [ Docker.publish "80:80"
+ [ Docker.publish "8080:80"
, Docker.volume "/var/www:/var/www"
, Docker.inside
[ serviceRunning "apache2"