Giter VIP home page Giter VIP logo

pulp-dockerfiles's Introduction

Pulp Dockerfiles

This repository contains dockerfiles for Pulp, a repository management system. Pulp may be used as a docker registry.

Orchestration

Options

Component Images

Start the containers in this order.

pulp data

Shared configuration container. Provides volumes /etc/pulp, /var/www, /opt/pulp_docker and /var/lib/pulp

docker run -d -e MONGO=$(hostname -i) --name pulp-data pulp/data

Qpid

Messaging queue

docker run -d -p 5672:5672 --name pulp-qpid pulp/qpid

Mongo DB

MongoDB is the datastore for pulp content

docker run -d -p 27017:27017 --name pulp-mongo pulp/mongodb

web server

The is the pulp web server for the REST API and serving static content from pulp. This container also sets up the mongo database. It requires syslog so for now we mount /dev/log and run as --privileged.

docker run -d -p 443:443 --privileged -v /dev/log:/dev/log --volumes-from pulp-data pulp/apache

Server

This is the core pulp server image that may be invoked several ways. It requires syslog so for now we mount /dev/log and run as --privileged.

  • pulp worker

      docker run -d --privileged -v /dev/log:/dev/log --name pulp-worker1 pulp/server worker 1
      docker run -d --privileged -v /dev/log:/dev/log --name pulp-worker2 pulp/server worker 2
    
  • celery beat

      docker run -d --privileged -v /dev/log:/dev/log --name pulp-celerybeat pulp/server beat
    
  • resource manager

      docker run -d --privileged -v /dev/log:/dev/log --name pulp-resource-mgr pulp/server resource_manager
    

Crane

Crane is an API implementation of the docker protocol. It responds to docker client requests. This is the only end-user facing element to respond to docker client requests. See https://github.com/pulp/crane

docker run -d -v /root/crane_data:/var/lib/crane/metadata -p 5000:80 --name pulp-crane-registry pulp/crane

pulp-dockerfiles's People

Contributors

aweiteka avatar scollier avatar

Watchers

Ivan Necas avatar James Cloos avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.