Skip to content

Commit

Permalink
Fixes #1446 - Switch mysql in docker-compose.yml to just mysql:8.0 (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
jonespm committed Nov 15, 2022
1 parent 1979b9d commit 9da924b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docker-compose-prod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ version: '3.7'

services:
mysql:
image: mysql:5.7.22
image: mysql:8.0
restart: on-failure
environment:
- MYSQL_HOST=${MYSQL_HOST}
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ version: '3.7'
services:

mysql:
image: mysql/mysql-server:8.0
image: mysql:8.0
restart: on-failure
command: ['--character-set-server=utf8mb4', '--collation-server=utf8mb4_unicode_ci', '--socket=/tmp/mysql.sock']
env_file:
Expand Down

0 comments on commit 9da924b

Please sign in to comment.