Browse Source

Fix environment variables

pull/1/head
Wesley Kerfoot 6 years ago
parent
commit
556a955dde
  1. 2
      .gitignore
  2. 8
      docker-compose.yml

2
.gitignore

@ -13,3 +13,5 @@ tags
build build
.sass_cache .sass_cache
.envrc .envrc
cut_release.sh
.env

8
docker-compose.yml

@ -5,13 +5,17 @@ services:
ports: ports:
- "127.0.0.1:5984:5984" - "127.0.0.1:5984:5984"
env_file: env_file:
- "./.envrc" - ".env"
environment:
- "COUCHDB_USER"
- "COUCHDB_PASSWORD"
- "COUCHDB_NAME"
web: web:
build: app build: app
ports: ports:
- "80" - "80"
network_mode: host network_mode: host
env_file: env_file:
- "./.envrc" - ".env"
depends_on: depends_on:
- "couch" - "couch"

Loading…
Cancel
Save