Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 5 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
FROM eywalker/pydev

MAINTAINER Fabian Sinz <sinz@bcm.edu>
MAINTAINER Edgar Y. Walker <edgar.walker@gmail.com>
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Oops, how did that end up here.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Sorry I overwrote it with a file I already had - didn't mean it to make a name claiming thing :(


RUN pip install git+https://github.com/datajoint/datajoint-python.git && \
pip install git+https://github.com/datajoint/datajoint-addons.git
ADD . /src
RUN pip install /src && \
rm -rf /src



7 changes: 7 additions & 0 deletions JupyterDockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
FROM eywalker/jupyter

MAINTAINER Edgar Y. Walker <edgar.walker@gmail.com>

ADD . /src
RUN pip install /src && \
rm -rf /src
20 changes: 20 additions & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
version: '2'
services:
datajoint:
build:
context: .
dockerfile: JupyterDockerfile
environment:
- DJ_HOST=db
- DJ_USER=root
- DJ_PASS=simple
links:
- db
ports:
- "8888:8888"
db:
image: mysql:5.7
environment:
- MYSQL_ROOT_PASSWORD=simple