Skip to content

Commit

Permalink
Merge pull request #11 from MrK191/fix-postgres_role_missing
Browse files Browse the repository at this point in the history
Added sql that adds missing postgres role.
  • Loading branch information
4tikhonov authored Nov 20, 2018
2 parents db0b282 + 9e02222 commit b32a445
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
2 changes: 2 additions & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ services:
- "5435:5432"
volumes:
- ./data/db:/var/lib/postgresql/data
- ./postgresql/init.sql:/docker-entrypoint-initdb.d/init.sql

solr:
build: solr7/
Expand Down Expand Up @@ -53,3 +54,4 @@ services:
networks:
dvn:
driver: bridge

1 change: 1 addition & 0 deletions postgresql/init.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
CREATE ROLE postgres LOGIN;

0 comments on commit b32a445

Please sign in to comment.