20 строки
440 B
YAML
20 строки
440 B
YAML
version: '3.1'
|
|
services:
|
|
postgres:
|
|
image: postgres
|
|
restart: always
|
|
ports:
|
|
- "5432:5432"
|
|
environment:
|
|
POSTGRES_PASSWORD: morph
|
|
mysql:
|
|
image: "mysql:5.7"
|
|
restart: always
|
|
ports:
|
|
- "3307:3306"
|
|
command: --default-authentication-plugin=mysql_native_password
|
|
environment:
|
|
MYSQL_DATABASE: morph_test
|
|
MYSQL_USER: morph
|
|
MYSQL_PASSWORD: morph
|
|
MYSQL_ROOT_PASSWORD: morph |