Skip to content

Instantly share code, notes, and snippets.

@markllama
Last active August 29, 2015 14:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save markllama/4ff20b8a67221e1776d7 to your computer and use it in GitHub Desktop.
Save markllama/4ff20b8a67221e1776d7 to your computer and use it in GitHub Desktop.
The description of a Pulp Worker container in Docker
FROM markllama/pulp-base
MAINTAINER Mark Lamourine <markllama@gmail.com>
#
# Pulp Worker service - coordinate activities
#
# Environment Variables:
# DB_SERVER_HOST: name or IP address of the MongoDB server
# DB_SERVER_PORT: TCP port for MongoDB (default: 27017)
# MSG_SERVER_HOST: name or IP address of the qpid server
# MSG_SERVER_PORT: TCP port for qpidd (default: 5672)
# PULP_SERVER_NAME: The public server name of the HTTP services
#
# must be started with -v /dev/log:/dev/log
#
VOLUME [ "/var/www", "/var/lib/pulp" ]
ADD run.sh /run.sh
# Usage: /run.sh <worker number>
ENTRYPOINT ["/run.sh"]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment