Skip to content

Commit

Permalink
fix(docker-compose.yml): added MYSQL_ROOT_HOST: '%' to allow any host…
Browse files Browse the repository at this point in the history
… to connect yo mysql container

re #86
  • Loading branch information
Eventyret committed Jul 6, 2023
1 parent fe2e982 commit a88d431
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions templates/docker-compose.liquid
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,7 @@ services:
MYSQL_ROOT_PASSWORD: ${DATABASE_PASSWORD}
MYSQL_PASSWORD: ${DATABASE_PASSWORD}
MYSQL_DATABASE: ${DATABASE_NAME}
MYSQL_ROOT_HOST: '%'
volumes:
- {{name | downcase}}-data:/var/lib/mysql
#- ./data:/var/lib/postgresql/data/ # if you want to use a bind folder
Expand Down

0 comments on commit a88d431

Please sign in to comment.