-
Notifications
You must be signed in to change notification settings - Fork 100
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hotfix/security monkey v0.7.0 #50
base: master
Are you sure you want to change the base?
Hotfix/security monkey v0.7.0 #50
Conversation
Add docker-compose.yml for local development Add secmonkey.env.example for providing a base on how to add environment variables to the containers
SecurityMonkey v0.7.0 Fix build context for NGINX container
configuration changes in config-deploy.py
based on environment values
|
||
RUN apt-get update &&\ | ||
apt-get -y -q install python-software-properties software-properties-common postgresql-9.3 postgresql-client-9.3 postgresql-contrib-9.3 curl &&\ | ||
apt-get install -y python-pip python-dev python-psycopg2 libffi-dev libpq-dev libyaml-dev libxml2-dev libxmlsec1-dev git sudo swig python-m2crypto &&\ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
PR 188 ( Netflix/security_monkey#188 ) should have removed the requirement for m2crypto.
}, | ||
'loggers': { | ||
'security_monkey': { | ||
'handlers': ['file', 'console'], |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Probably don't want to use file
in docker.
Logging should go to stdout, iirc.
'level': 'DEBUG' | ||
}, | ||
'apscheduler': { | ||
'handlers': ['file', 'console'], |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Probably don't want to use file
in docker.
Logging should go to stdout, iirc.
Looks pretty good. I made a couple comments. (m2crypto probably isn't required anymore and we can probably remove the file handler.) |
This branch updates SecurityMonkey to use the latest (v0.7.0 at this time) release.
Notable changes are: