mirror of
https://github.com/SrIzan10/next-auth.git
synced 2026-05-01 10:55:20 +00:00
22 lines
406 B
YAML
22 lines
406 B
YAML
# Start Mongo, MySQL and Postgres databases
|
||
# Though other databases will be supported, these are the initial targets.
|
||
# Uses Docker Compose v2 as v3 doesn't support extends
|
||
version: '2'
|
||
|
||
services:
|
||
|
||
mongo:
|
||
extends:
|
||
file: mongo.yml
|
||
service: mongo
|
||
|
||
mysql:
|
||
extends:
|
||
file: mysql.yml
|
||
service: mysql
|
||
|
||
postgres:
|
||
extends:
|
||
file: postgres.yml
|
||
service: postgres
|