-
Notifications
You must be signed in to change notification settings - Fork 0
/
Dockerfile
67 lines (44 loc) · 1.93 KB
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
# Galaxy - tsd
#
# VERSION 0.1
FROM bgruening/galaxy-stable
MAINTAINER Kim Brugger, [email protected]
ENV GALAXY_CONFIG_BRAND NeLS
# The following two lines are optional and can be given during runtime
# with the -e http_proxy='http://yourproxyIP:8080' parameter
#ENV http_proxy 'http://yourproxyIP:8080'
#ENV https_proxy 'http://yourproxyIP:8080'
ENV GALAXY_DEFAULT_ADMIN_USER galaxy
ENV GALAXY_DEFAULT_ADMIN_PASSWORD galaxy
WORKDIR /galaxy-central
RUN add-tool-shed --url 'http://testtoolshed.g2.bx.psu.edu/' --name 'Test Tool Shed'
#ADD ./tools/rnaseq.yml $GALAXY_ROOT/rnaseq.yaml
ADD ./tools/tools.yml $GALAXY_ROOT/tools.yaml
RUN install-tools $GALAXY_ROOT/tools.yaml && \
/tool_deps/_conda/bin/conda clean --tarballs --yes > /dev/null && \
rm /export/galaxy-central/ -rf && \
mkdir -p workflows
ADD ./nels-workflows/* $GALAXY_HOME/workflows/
ENV GALAXY_CONFIG_TOOL_PATH=/galaxy-central/tools/
#RUN /tool_deps/_conda/bin/workflow-install --workflow_path $GALAXY_HOME/workflows/ -g http://localhost:8080 \
# -u $GALAXY_DEFAULT_ADMIN_USER -p $GALAXY_DEFAULT_ADMIN_PASSWORD
# Download training data and populate the data library
#RUN startup_lite && \
# /tool_deps/_conda/bin/workflow-install --workflow_path $GALAXY_HOME/workflows/ -g http://localhost:8080 -u $GALAXY_DEFAULT_ADMIN_USER -p $GALAXY_DEFAULT_ADMIN_PASSWORD
# Install Visualisation
#RUN install-biojs msa
# Adding the tool definitions to the container
#ADD my_tool_list.yml $GALAXY_ROOT/my_tool_list.yml
# Install deepTools
#RUN install-tools $GALAXY_ROOT/my_tool_list.yml
# Mark folders as imported from the host.
VOLUME ["/export/", "/data/", "/var/lib/docker"]
ADD assets $GALAXY_CONFIG_DIR/web/
#RUN mkdir $GALAXY_HOME/workflows/
#ADD ./workflows/* $GALAXY_HOME/workflows/
# Expose port 80 (webserver), 21 (FTP server), 8800 (Proxy)
EXPOSE :80
#EXPOSE :21
#EXPOSE :8800
# Autostart script that is invoked during container start
CMD ["/usr/bin/startup"]