On Tue, Nov 17, 2015 at 10:20 AM, RĂ³man Joost rjoost@redhat.com wrote:
Hi,
I'd like to share a work in progress I'm using daily to hack on Beaker. It's a docker container providing a full development environment to run tests and the Beaker server.
Documentation: https://git.beaker-project.org/cgit/~rjoost/beaker-docker/tree/README.md Repository: https://git.beaker-project.org/cgit/~rjoost/beaker-docker
The container is not available on docker-hub or any repository, so you'll have to build it yourself. It is using an ansible playbook creating the environment, which could also be employed against a different form of provisioning (e.g. libvirt, vagrant, packer, whatever).
I tried:
git clone git://git.beaker-project.org/~rjoost/beaker-docker cd beaker-docker/beaker docker-compose build
But it failed with:
chown: cannot access `/workspace': No such file or directory Service 'devbase' failed to build: The command '/bin/sh -c yum install -y zsh vim sudo lsof nc less curl && echo 'dev ALL=(ALL) NOPASSWD:ALL' >> /etc/sudoers && echo 'Defaults:dev !requiretty'
/etc/sudoers && useradd -u 1000 dev && usermod -aG wheel
dev && chown dev:dev /workspace && yum clean all' returned a non-zero code: 1
Cheers, Nick.