Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/wrale/docker-dna
DockerDNA Project: Create Ansible-provisioned Docker images.
https://github.com/wrale/docker-dna
Last synced: 4 days ago
JSON representation
DockerDNA Project: Create Ansible-provisioned Docker images.
- Host: GitHub
- URL: https://github.com/wrale/docker-dna
- Owner: wrale
- License: gpl-3.0
- Created: 2013-10-18T19:29:18.000Z (about 11 years ago)
- Default Branch: master
- Last Pushed: 2013-12-07T20:31:45.000Z (about 11 years ago)
- Last Synced: 2024-03-27T13:51:05.240Z (10 months ago)
- Language: Shell
- Homepage:
- Size: 153 KB
- Stars: 40
- Watchers: 8
- Forks: 11
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
docker-dna
==========DockerDNA Project: Create Ansible-provisioned Docker images.
Getting Started
----### Render a DockerDNA-ready base image.
Only Ubuntu 12.04 is supported at this time. I'll add others if interest is apparent.git clone https://github.com/wrale/docker-dna.git
cd ./docker-dna/base
docker build -t yourname/docker-dna_base:12.04 .### Render a Docker image based on an existing DockerDNA role.
cd ../rabbitmq
docker build -t yourname/docker-dna_rabbitmq:3.1.5 .### Run a container using the image you just built:
docker run -d -t yourname/docker-dna_rabbitmq:3.1.5 ??
### Create your own DockerDNA roles using [Ansible Best Practices](http://www.ansibleworks.com/docs/playbooks_best_practices.html).
Take a look at the zookeeper/ and rabbitmq/ directories for reference.