Fix port type
This commit is contained in:
parent
6a53f3891b
commit
a1b88e24b8
2 changed files with 2 additions and 2 deletions
|
@ -23,7 +23,7 @@ let Config : Type =
|
|||
, buildConcurrently : Bool -- Whether to build images concurrently
|
||||
, prepareContainers : Bool -- Whether to setup all containers on startup
|
||||
, cleanupInterval : Natural -- The interval in minutes to kill containers periodically
|
||||
, port : Integer -- Port to run on
|
||||
, port : Natural -- Port to run on
|
||||
}
|
||||
|
||||
-- Write your config here!
|
||||
|
|
|
@ -46,7 +46,7 @@ data MyriadConfig = MyriadConfig
|
|||
, buildConcurrently :: Bool
|
||||
, prepareContainers :: Bool
|
||||
, cleanupInterval :: Natural
|
||||
, port :: Integer
|
||||
, port :: Natural
|
||||
} deriving (Show, Generic)
|
||||
|
||||
instance Interpret MyriadConfig
|
||||
|
|
Loading…
Reference in a new issue