Skip to content

Commit

Permalink
Fix Postgres environment variables
Browse files Browse the repository at this point in the history
  • Loading branch information
colinwilson committed Oct 20, 2017
1 parent 2e76d99 commit 86c4c02
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,14 @@ services:

# DB is linked
DB_DRIVER: pgsql
DB_HOST: postgres
DB_NAME: craft3beta
DB_PORT: 5432
DB_SERVER: postgres
DB_DATABASE: craft3beta
DB_PASSWORD: secret
DB_SCHEMA: public
DB_PORT: '5432'
DB_USER: craft3beta
DB_PASS: secret
LANG: C.UTF-8
MEMCACHED_HOST: memcached

postgres:
image: postgres:10.0
Expand Down

1 comment on commit 86c4c02

@colinwilson
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Fix for issue #9

Please sign in to comment.