Skip to content

Commit

Permalink
Added sql that adds missing postgres role.
Browse files Browse the repository at this point in the history
  • Loading branch information
Karol Kulik committed Nov 20, 2018
1 parent db0b282 commit 9e02222
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 9e02222

Please sign in to comment.