Skip to content

Commit

Permalink
Use OracleLinux-based MySQL Docker image
Browse files Browse the repository at this point in the history
I'd rather use Debian, but Oracle doesn't provide ARM builds of MySQL
for Debian.
  • Loading branch information
matiasgarciaisaia committed Feb 22, 2024
1 parent f8cf969 commit e3db427
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
3 changes: 2 additions & 1 deletion docker-compose.production.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@ version: '2.0'

services:
db:
image: mysql:5.7
image: mysql:8.0
command: --default-authentication-plugin=mysql_native_password
environment:
MYSQL_RANDOM_ROOT_PASSWORD: 'yes'
MYSQL_USER: resourcemap
Expand Down
3 changes: 1 addition & 2 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,8 @@ version: '2.0'

services:
db:
image: mysql:8.0-debian
image: mysql:8.0
command: --default-authentication-plugin=mysql_native_password
platform: linux/amd64
environment:
MYSQL_ALLOW_EMPTY_PASSWORD: 'yes'
volumes:
Expand Down

0 comments on commit e3db427

Please sign in to comment.