summaryrefslogtreecommitdiff
path: root/src/Propellor
AgeCommit message (Collapse)Author
2015-06-16Replace String type synonym Docker.Image by a data type which allows to ↵Antoine Eiche
specify an image name and an optional tag. This also introduces the class ImageIdentifier which is internally used by some Docker methods.
2015-06-04Add Docker environment property which allows to specify environment ↵Antoine Eiche
variables to containers.
2015-06-02wordingJoey Hess
2015-06-02fix exampleJoey Hess
2015-06-01Docker: volume and publish accept Bound FilePath and Bound Port, ↵Joey Hess
respectively. They also continue to accept Strings, for backwards compatability.
2015-06-01more systemd improvementsJoey Hess
2015-06-01add BoundJoey Hess
2015-06-01propellor spinJoey Hess
2015-06-01descsJoey Hess
2015-06-01use --machineJoey Hess
needed by systemd 220 for machined to see the container as a machine
2015-06-01another try at unmounting /proc for systemd-nspawnJoey Hess
2015-06-01add linkJournal property so it can be reverted to disableJoey Hess
2015-06-01explicitly speciy params for systemd-nspawn ExecStartJoey Hess
It was using whatever was in /lib/systemd/system/systemd-nspawn@.service, but systemd 220 added --network-veth to that, which can break existing setups. So don't do that.
2015-06-01propellor spinJoey Hess
2015-06-01don't mount /proc when provisioning systemd-nspawn containerJoey Hess
While needed for chroot provisioning, it confuses system when systemd-nspawn runs it inside the container.
2015-06-01reorganize Port type for systemd can use itJoey Hess
2015-06-01better types for systemd port publishingJoey Hess
2015-06-01propellor spinJoey Hess
2015-06-01Added publish property for systemd-spawn containers. (Needs systemd version ↵Joey Hess
220.)
2015-06-01remove Params constructorJoey Hess
Before it gets into released API...
2015-06-01updateJoey Hess
2015-05-30revert testJoey Hess
2015-05-30propellor spinJoey Hess
2015-05-30--spin now works when given a short hostname that only resolves to an ipv6 ↵Joey Hess
address.
2015-05-30export createProcess with debug logging from Propellor.Property.CmdJoey Hess
2015-05-30Mount /proc inside a chroot before provisioning it, to work around #787227Joey Hess
2015-05-29Fix Postfix.satellite bug; the default relayhost was set to the domain, not ↵Joey Hess
to smtp.domain as documented.
2015-05-29workaround bugJoey Hess
2015-05-29propellor spinJoey Hess
2015-05-28reorderJoey Hess
2015-05-27propellor spinJoey Hess
2015-05-27propellor spinJoey Hess
2015-05-27Improve enter-machine scripts for nspawn containers to unset most ↵Joey Hess
environment variables.
2015-05-27propellor spinJoey Hess
2015-05-27Export CommandParam, boolSystem, safeSystem and shellEscape from ↵Joey Hess
Propellor.Property.Cmd, so they are available for use in constricting your own Properties when using propellor as a library. Several imports of Utility.SafeCommand now redundant.
2015-05-26propellor spinJoey Hess
2015-05-24remove unnecessary use of ensurePropertyJoey Hess
2015-05-24propellor spinJoey Hess
2015-05-22propellor spinJoey Hess
2015-05-22propellor spinJoey Hess
2015-05-22mergeJoey Hess
2015-05-22propellor spinJoey Hess
2015-05-18propellor spinJoey Hess
2015-05-18show docs in haddockJoey Hess
2015-05-18refactorJoey Hess
2015-05-16comment typoJoey Hess
2015-05-16add trivial HasImage instance for ImageJoey Hess
2015-05-16Add HasImage type class which provides getImageName method to extract an ↵Antoine Eiche
image name. Image related functions now require a HasImage instance.
2015-05-12Docker images related properties.Antoine Eiche
- a property to pull image from standard Docker Hub registry. - a property to build image from a local directory (with a Dockerfile).
2015-05-12add Docker.Container field labels containerImage and containerHostAntoine Eiche