Files
archived-next-auth/test/docker/docker-compose.yml
2020-06-01 01:06:44 +01:00

22 lines
406 B
YAML
Raw Permalink Blame History

This file contains invisible Unicode characters
This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# 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