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

Commit

Permalink
removed single quotes from docker compose env variables
Browse files Browse the repository at this point in the history
  • Loading branch information
Gabriele Cerfoglio authored and Gabriele Cerfoglio committed Dec 12, 2017
1 parent c439fb2 commit eb334b6
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,16 @@ services:
web:
image: martel/mastermind-ui
environment:
- MASTERMIND_API_HOST='localhost'
- MASTERMIND_API_PORT='3000'
- MASTERMIND_API_HOST=localhost
- MASTERMIND_API_PORT=3000
ports:
- "8080:8080"

api:
image: martel/mastermind-api
environment:
- SERVICE_MANAGER_HOST='service-manager'
- SERVICE_MANAGER_PORT='8080'
- SERVICE_MANAGER_HOST=service-manager
- SERVICE_MANAGER_PORT=8080
ports:
- "3000:3000"
command: rails s -b0
Expand Down

0 comments on commit eb334b6

Please sign in to comment.