Skip to content
Open
Show file tree
Hide file tree
Changes from 7 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
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,4 @@ npm-debug.log
config/local.js
config/development.js
.*swp
data/
12 changes: 10 additions & 2 deletions docker-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,20 @@ services:
web:
build: .
expose:
- "5000"
- '5000'
ports:
- '5000:5000'
volumes:
- ./:/usr/src/app/
links:
- geocouch:geocouch
environment:
NODE_ENV: 'production'
geocouch:
image: almereyda/geocouch
volumes:
- ./data:/usr/local/var/lib/couchdb
expose:
- "5984"
- '5984'
ports:
- '5984:5984'
Loading