Floki was a boatbuilder. Floki now helps you launch build containers.
floki
aims to improve the human interface for launching and using interactive docker containers. Instead of remembering or constructing complicated docker run
commands, or writing custom scripts to launch docker containers, floki
lets you specify what you want from your docker container in a configuration file. You can then get your environment just by running floki
.
This has several advantages over the usual approaches (custom scripts, or, more commonly, leaving it to the user to figure out)
For installation, and basic usage, see getting started.
Full documentation can be found here.
Precompiled binaries can be downloaded from the releases page (for linux and OSX).
To obtain curl
and extract the latest linux binary directly in your shell, run
$ curl -L https://github.com/Metaswitch/floki/releases/download/0.4.3/floki-0.4.3-linux.tar.gz | tar xzvf -
You should be able to run floki
from your working directory:
$ ./floki --version
floki 0.4.3
Move it onto your path to run it from anywhere. E.g.
```
```
Enjoy!
It's recommended you add your user to the docker
group:
sudo usermod -a -G docker USERNAME
and logout and in again to pick up the changes.
Alternatively you can run floki
with sudo -E floki
.
floki
allows you to launch interactive containers with your working directory mounted, and to configure those containers for interactive use.
Provide a floki.yaml
in the root directory of your source code, in the following form:
yaml
image: $IMAGE_NAME
init:
- echo "Hello, there"
or to use a local Dockerfile
yaml
image:
build:
name: name_of_resultant_image
dockerfile: Dockerfile.build
init:
- echo "Hello, there"
and run floki
in that directory. You should be dropped into a shell with the init commands run, and inside a directory where your host working directory has been mounted.
ssh-agent
(useful for authenticating with remote private git servers to pull private dependencies)Contributors will need to sign there commits to acknowledge the DCO
See issues.