Created
September 23, 2014 21:02
-
-
Save markllama/4d895bca1d7b11ed2170 to your computer and use it in GitHub Desktop.
A Dockerfile which composes a Pulp beat server from the base image
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM markllama/pulp-base | |
MAINTAINER Mark Lamourine <[email protected]> | |
# | |
# Pulp Celerybeat 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 | |
# | |
ADD run.sh /run.sh | |
CMD [ "/run.sh" ] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment