| Safe Haskell | None |
|---|---|
| Language | Haskell2010 |
Language.Docker.EDSL.Types
Documentation
data EBaseImage Source #
Constructors
| EUntaggedImage String (Maybe ImageAlias) | |
| ETaggedImage String String (Maybe ImageAlias) | |
| EDigestedImage String ByteString (Maybe ImageAlias) |
Instances
data EInstruction next Source #
Constructors
| From EBaseImage next | |
| AddArgs (NonEmpty SourcePath) TargetPath Chown next | |
| User String next | |
| Label Pairs next | |
| StopSignal String next | |
| CopyArgs (NonEmpty SourcePath) TargetPath Chown CopySource next | |
| RunArgs Arguments next | |
| CmdArgs Arguments next | |
| Shell Arguments next | |
| Workdir Directory next | |
| Expose Ports next | |
| Volume String next | |
| EntrypointArgs Arguments next | |
| Maintainer String next | |
| Env Pairs next | |
| Arg String (Maybe String) next | |
| Comment String next | |
| Healthcheck Check next | |
| OnBuildRaw Instruction next | |
| Embed [InstructionPos] next |
Instances