Skip to content

imcleod/atomicapp

 
 

Repository files navigation

Atomicapp

Atomicapp is a reference implementation of the Nulecule Specification. It can be used to bootstrap container applications and to install and run them. Atomicapp is designed to be run in a container context. Examples using this tool may be found in the Nulecule examples directory.

Getting Started

Atomicapp is packaged as a container. End-users typically do not install the software from source. Instead use the atomicapp container as the FROM line in a Dockerfile and package your application on top. For example:

FROM projectatomic/atomicapp

MAINTAINER Your Name <you@example.com>

ADD /nulecule /Dockerfile README.md /application-entity/
ADD /artifacts /application-entity/artifacts

For more information see the Nulecule getting started guide.

Developers

First of all, clone the github repository: git clone https://github.com/projectatomic/atomicapp.

Install this project

Simply run

pip install .

If you want to do some changes to the code, I suggest to do:

cd atomicapp
export PYTHONPATH=`pwd`:$PYTHONPATH
alias atomicapp="`pwd`/atomicapp/cli/main.py"

Build

atomicapp [--dry-run] build [TAG]

Calls Docker build to package up the application and tags the resulting image.

Install and Run

atomicapp [--dry-run] [-a answers.conf] install|run [--recursive] [--update] [--destination DST_PATH] APP|PATH

Pulls the application and it's dependencies. If the last argument is existing path, it looks for Nulecule file there instead of pulling anything.

  • --recursive yes|no Pull whole dependency tree
  • --update Overwrite any existing files
  • --destination DST_PATH Unpack the application into given directory instead of current directory
  • APP Name of the image containing the application (f.e. vpavlin/wp-app)
  • PATH Path to a directory with installed (i.e. result of atomicapp install ...) app

Action run performs install prior it's own tasks are executed if APP is given. When run is selected, providers' code is invoked and containers are deployed.

Providers

Providers represent various deployment targets. They can be added by placing a file called provider_name.py in providers/. This file needs to implement the interface explained in (providers/README.md). For a detailed description of all providers available see the Provider description.

Dependencies

As of Version 0.0.1 Atomicapp uses Python 2.7.5 and Anymarkup.

##Communication channels

The Badges

Code Health Build Status

Copyright

Copyright (C) 2015 Red Hat Inc.

This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License, version 3, as published by the Free Software Foundation. For details see GNU-AGPL-3.0.txt

About

This is the reference implementation of the Nulecule container application Specification: Atomicapp

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 96.3%
  • Shell 3.7%