We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8e82cbc commit 82ec7e6Copy full SHA for 82ec7e6
docker-compose.yml
@@ -15,25 +15,25 @@ services:
15
- postgres
16
- mysql
17
environment:
18
- POSTGRES_HOST: postgres
+ POSTGRES_HOST: mito-test-postgres
19
POSTGRES_USER: mito
20
POSTGRES_PASS: mito
21
- MYSQL_HOST: mysql
+ MYSQL_HOST: mito-test-mysql
22
MYSQL_USER: root
23
MYSQL_PASS: mito
24
25
postgres:
26
container_name: mito-postgres
27
+ hostname: mito-test-postgres
28
image: "postgres:10"
- restart: always
29
30
31
POSTGRES_PASSWORD: mito
32
33
mysql:
34
container_name: mito-mysql
35
+ hostname: mito-test-mysql
36
image: "mysql:8"
37
command: --default-authentication-plugin=mysql_native_password
38
39
MYSQL_ROOT_PASSWORD: mito
0 commit comments