Skip to content
This repository has been archived by the owner on Aug 27, 2021. It is now read-only.

Commit

Permalink
Fixed compose file vars
Browse files Browse the repository at this point in the history
  • Loading branch information
Gabriele Cerfoglio authored and Gabriele Cerfoglio committed Feb 7, 2018
1 parent 66f3b32 commit 9caf996
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,23 +4,23 @@ services:
web:
image: martel/mastermind-ui
environment:
- MASTERMIND_API_HOST=localhost
- MASTERMIND_API_PORT=3000
- MASTERMIND_OAUTH_URI=https://account.lab.fiware.org
- MASTERMIND_OAUTH_CLIENT_ID=f856da058c20414db0e946d234a5b9b1
- MASTERMIND_OAUTH_REDIRECT_URI=http://localhost:3000/auth/login
- MASTERMIND_API_HOST='localhost'
- MASTERMIND_API_PORT='3000'
- MASTERMIND_OAUTH_URI='account.lab.fiware.org'
- MASTERMIND_OAUTH_CLIENT_ID='f856da058c20414db0e946d234a5b9b1'
ports:
- "8080:8080"

api:
image: martel/mastermind-api
environment:
- MASTERMIND_API_HOST=localhost
- MASTERMIND_API_PORT=3000
- SERVICE_MANAGER_HOST=service-manager
- SERVICE_MANAGER_PORT=8080
- MASTERMIND_OAUTH_URI=https://account.lab.fiware.org
- MASTERMIND_OAUTH_CLIENT_ID=f856da058c20414db0e946d234a5b9b1
- MASTERMIND_OAUTH_SECRET_ID=08eaae80ae544d66ba858de71adb7421
- MASTERMIND_OAUTH_REDIRECT_URI=http://localhost:3000/auth/login
ports:
- "3000:3000"
command: rails s -b0
Expand Down

0 comments on commit 9caf996

Please sign in to comment.