This repository has been archived by the owner on Jan 28, 2022. It is now read-only.
Releases: cloudfoundry-incubator/cflocal
Releases · cloudfoundry-incubator/cflocal
v0.2.0 - Feature Complete
Push works now!
Linux and Windows versions coming soon!
v0.1.1 - Fix Argument Parsing
App name should be parsed first to match help text.
v0.1.0 - Almost Feature Complete
Stage, launch, push, pull, and export CF apps -- in Docker.
See README.md.
Known issues: cf local push
doesn't quite work yet.
v0.0.2 - Support for local directory in app container
This release introduces a -d
option to cf local run
.
This option mounts /home/vcap/app
to a local directory of your choosing:
$ cf local pull my-cf-app
$ cf local run -p 3000 -d local-dir my-cf-app
$ cd local-dir
$ # now I'm inside the running app root
If the directory is empty (or non-existent), the droplet app is copied to it.
If the directory is not empty, its contents are used in place of the app contents.
v0.0.1 - First working beta
Update README.md