Skip to content

Commit

Permalink
preparing for v0.7
Browse files Browse the repository at this point in the history
  • Loading branch information
ghukill committed Apr 3, 2019
1 parent 8247ae6 commit 52adc01
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .env
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
COMBINE_BRANCH=v0.6.3
COMBINE_BRANCH=master
COMBINE_DJANGO_HOST_PORT=8000
COMBINE_DOCKER_VERSION=v0.6.2
COMBINE_DOCKER_VERSION=v0.7
ELASTICSEARCH_HADOOP_CONNECTOR_VERSION=5.6.2
HADOOP_VERSION=2.7.5
HADOOP_VERSION_SHORT=2.7
Expand Down
7 changes: 6 additions & 1 deletion combine/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -57,4 +57,9 @@ RUN curl -sL https://deb.nodesource.com/setup_10.x | bash - \
# installs to /opt/conda/envs/python2.7/bin/es2csv
RUN /opt/conda/bin/conda create -n python2.7 python=2.7 --yes \
&& /opt/conda/envs/python2.7/bin/pip install git+https://github.com/WSULib/es2csv.git \
&& ln -s /opt/conda/envs/python2.7/bin/es2csv /usr/bin/es2csv
&& ln -s /opt/conda/envs/python2.7/bin/es2csv /usr/bin/es2csv

# install mongo tools
RUN echo "deb [ arch=amd64 ] https://repo.mongodb.org/apt/ubuntu bionic/mongodb-org/4.0 multiverse" | tee /etc/apt/sources.list.d/mongodb-org-4.0.list \
&& apt-get update \
&& apt-get install -y mongodb-org-tools
2 changes: 1 addition & 1 deletion combine/combine
6 changes: 3 additions & 3 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ services:
volumes:
- mongodata:/data/db
ports:
- 27017:27017
- 27018:27017
command: "--config /etc/mongod.conf"
networks:
combinenet:
Expand All @@ -50,8 +50,8 @@ services:

redis:
image: redis:4.0
ports:
- 6379:6379
# ports:
# - 6379:6379
networks:
combinenet:
ipv4_address: 10.5.0.5
Expand Down

0 comments on commit 52adc01

Please sign in to comment.