Skip to content

Commit

Permalink
docker: hassle-free DB bootstrap
Browse files Browse the repository at this point in the history
While it is recommended to use `POSTGRES_PASSWORD`, I think it's good when we
can bring MSF up with minimum effort from scratch.

It shouldn't be an issue from the security point of view having the DB running
in a docker container with the 5432/tcp port available only to the MSF.
  • Loading branch information
arno01 committed Jan 8, 2021
1 parent 25aecc8 commit b641e25
Showing 1 changed file with 2 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 @@ -15,6 +15,8 @@ services:
image: postgres:10-alpine
volumes:
- pg_data:/var/lib/postgresql/data
environment:
POSTGRES_HOST_AUTH_METHOD: trust

volumes:
pg_data:
Expand Down

0 comments on commit b641e25

Please sign in to comment.