-
Notifications
You must be signed in to change notification settings - Fork 121
New docker setup for emission-server #618
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
New docker setup for emission-server #618
Conversation
Can one of the admins verify this patch? |
docker/Dockerfile-base
Outdated
@@ -0,0 +1,31 @@ | |||
# python 3 | |||
FROM continuumio/anaconda3 |
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.
This file doesn't include the changes to the Dockerfile in
#594
This is probably because you split the Dockerfile into two so the changes to Dockerfile
were not merged into Dockerfile-base
. Please merge the changes manually.
Also, as I pointed out in #617 (comment), after the change to miniconda, the server image is only 2GB. So I would recommend keeping one image for consistency but I will not oppose two images.
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.
Much better. Just a few small changes and I think this is ready to merge.
restart_policy: | ||
condition: on-failure | ||
ports: | ||
- "27017:27017" |
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.
this is only if you want to access the DB from the host. Add a note to that effect?
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.
LGTM!
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.
wait, not all the changes are done. Although the other changes are pretty small.
* Resolve conflict in start_script.sh * Resolve conflict in Dockerfile * Add composefile * Update docker README.md and Dockerfile * Update README * Moved everything into Dockerfile and deleted Dockerfile-base * Add Maintainer * Mount volume to store db data by default * Pull from emssion-server repo and install Vim
No description provided.