Skip to main content

Control the context of your docker builds.

Project description

Control the context of your docker builds.

Dockerfactory makes docker build easier by using a config file (Dockerfactory.yml) instead of command line arguments to build. Dockerfactory.yml also lets you specify the build context so you can pick and choose the exact directories or files that get added to your Docker build context.

Dockerfactory.yml

# Automatically tag built images
tag: six8/dockerfactory
# Can override the Dockerfile
dockerfile: ./Dockerfile.prod
# Most `docker build` parameters work (use '_' instead of '-')
force_rm: True
memory: 100m
context:
  # Relative directories are relative to Dockerfactory.yml
  # Must specify current directory if you want it. Dockerfactory
  # does not assume you want the current directory.
  .: /
  # Dockerfactory allows paths outside of current directory
  ../foobar:/foobar

See docker build for full set of parameters.

Usage

You can either install as a Python package with pip install dockerfactory or run as a docker image.

docker run -it --rm \
    -v /var/run/docker.sock:/var/run/docker.sock \
    -v ${PWD}:/project \
    six8/dockerfactory:0.1 \
    /project/Dockerfactory.yml
Dockerfactory building:
  With command: docker build --force-rm --memory 100m --no-cache --tag six8/dockerfactory:0.1 -
  With Dockerfile: /project/Dockerfile
  With context:
    - /project: /

Sending build context to Docker daemon 97.28 kB
....

Project details


Release history Release notifications | RSS feed

This version

0.1

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

dockerfactory-0.1.tar.gz (3.9 kB view hashes)

Uploaded Source

Built Distribution

dockerfactory-0.1-py2-none-any.whl (6.2 kB view hashes)

Uploaded Python 2

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page