mirror of
https://github.com/SrIzan10/next-auth.git
synced 2026-05-01 10:55:20 +00:00
15 lines
314 B
YAML
15 lines
314 B
YAML
version: '2'
|
|
|
|
services:
|
|
|
|
mysql:
|
|
image: mysql
|
|
command: --default-authentication-plugin=mysql_native_password
|
|
restart: always
|
|
environment:
|
|
MYSQL_USER: nextauth
|
|
MYSQL_PASSWORD: password
|
|
MYSQL_DATABASE: nextauth
|
|
MYSQL_RANDOM_ROOT_PASSWORD: 'yes'
|
|
ports:
|
|
- "3306:3306" |