Skip to content
This repository has been archived by the owner on Jan 9, 2023. It is now read-only.

Commit

Permalink
Merge pull request #102 from HospitalRun/docker-fix
Browse files Browse the repository at this point in the history
Docker fix
  • Loading branch information
John Kleinschmidt authored May 11, 2018
2 parents 435724a + 8cce898 commit f46b2c9
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 6 deletions.
6 changes: 5 additions & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ services:
container_name: elasticsearch_hr
image: docker.elastic.co/elasticsearch/elasticsearch:5.3.1
volumes:
- ./data/elasticsearch:/usr/share/elasticsearch/data
- esdata1:/usr/share/elasticsearch/data
ports:
- "9201:9200"
environment:
Expand Down Expand Up @@ -71,3 +71,7 @@ services:
links:
- couchdb
- elasticsearch

volumes:
esdata1:
driver: local
4 changes: 2 additions & 2 deletions nginx/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ COPY conf/defaultssl.conf.tmpl /etc/nginx/conf.d/defaultssl.conf.tmpl
COPY conf/entrypoint.sh entrypoint.sh
RUN chmod +x entrypoint.sh
RUN envsubst < /etc/nginx/conf.d/default.conf.tmpl > /etc/nginx/conf.d/default.conf \
&& envsubst < /etc/nginx/conf.d/defaultssl.conf.tmpl > /etc/nginx/conf.d/defaultssl.conf
&& envsubst < /etc/nginx/conf.d/defaultssl.conf.tmpl > /etc/nginx/conf.d/defaultssl

ENTRYPOINT /etc/nginx/entrypoint.sh
EXPOSE 80 443
EXPOSE 80 443
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@
"license": "GPL-3.0",
"dependencies": {
"colors": "^1.1.2",
"csv-parse": "2.2.0",
"csv-stringify": "^3.0.0",
"csv-parse": "2.0.2",
"csv-stringify": "^2.0.0",
"express": "^4.13.4",
"hospitalrun": "1.0.0-beta",
"hospitalrun-dblisteners": "1.0.0-beta",
Expand All @@ -30,7 +30,7 @@
"morgan": "^1.6.1",
"nano": "^6.2.0",
"node-uuid": "^1.4.2",
"osprey": "^0.5.0",
"osprey": "^0.4.1",
"prompt": "^1.0.0",
"snyk": "^1.17.5"
},
Expand Down

0 comments on commit f46b2c9

Please sign in to comment.