Created
December 10, 2016 02:46
-
-
Save ruuddotorg/92212de30663edf6f2d2f77cf1191784 to your computer and use it in GitHub Desktop.
Nightscout Docker files
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
mongo: | |
image: mongo | |
volumes: | |
- '/data/mongo:/data/db' | |
ports: | |
- '127.0.0.1:27017:27017' | |
nightscout: | |
image: nightscout | |
environment: | |
MONGO_CONNECTION: 'mongodb://nightscout@mongo:27017/nightscout' | |
API_SECRET: 'put_your_api_secret_here' | |
ENABLE: 'careportal iob cob bwp treatmentnotify basal bridge cage' | |
BRIDGE_USER_NAME: 'dexcom_username' | |
BRIDGE_PASSWORD: 'dexcom_password' | |
SHOW_FORECAST: 'ar2' | |
links: | |
- mongo | |
ports: | |
- '1337:1337' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM node:onbuild | |
RUN npm run postinstall |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment