Skip to content

Commit

Permalink
Fix issue with importing gpg keys for Mongodb, RabbitMQ and Docker on…
Browse files Browse the repository at this point in the history
… the backend
  • Loading branch information
Dennisparchkov committed Nov 26, 2016
1 parent 12a63c8 commit 65ca04a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
5 changes: 3 additions & 2 deletions backend/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,9 @@ WORKDIR /root

#Mongo
RUN \
apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv EA312927 && \
echo 'deb http://repo.mongodb.org/apt/ubuntu trusty/mongodb-org/3.2 multiverse' > /etc/apt/sources.list.d/mongodb.list
apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys EA312927 && \
echo "deb http://repo.mongodb.org/apt/ubuntu trusty/mongodb-org/3.2 multiverse" >> /etc/apt/sources.list.d/mongodb-org-3.2.list


#RabbitMQ
RUN \
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@ backend:
privileged: true
build: backend/
ports:
- "8000:8000"
- "8000:8000"

0 comments on commit 65ca04a

Please sign in to comment.