| 1234567891011121314151617 |
- # Use root/example as user/password credentials
- version: '3.1'
- services:
- db:
- image: mysql
- command: --default-authentication-plugin=mysql_native_password
- restart: always
- environment:
- MYSQL_ROOT_PASSWORD: example
- adminer:
- image: adminer
- restart: always
- ports:
- - 8080:8080
|