-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdocker-compose.yml
49 lines (49 loc) · 1.08 KB
/
docker-compose.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
version: '3.5'
services:
mysql:
image: mysql:8
container_name: x-admin-mysql
volumes:
- ./fixtures:/fixtures:ro
command: --default-authentication-plugin=mysql_native_password
ports:
- 8123:3306
environment:
MYSQL_ROOT_PASSWORD: x-admin
mysql5:
image: mysql:5
container_name: x-admin-mysql-5
volumes:
- ./fixtures:/fixtures:ro
command: --default-authentication-plugin=mysql_native_password
ports:
- 8123:3306
environment:
MYSQL_ROOT_PASSWORD: x-admin
mariadb:
image: mariadb:10.10
container_name: x-admin-mariadb
volumes:
- ./fixtures:/fixtures:ro
ports:
- 8123:3306
environment:
MARIADB_ROOT_PASSWORD: x-admin
pg:
image: postgres:15
container_name: x-admin-pg
volumes:
- ./fixtures:/fixtures:ro
ports:
- 8234:5432
environment:
POSTGRES_PASSWORD: x-admin
pg9:
image: postgres:9.3
container_name: x-admin-pg-9
volumes:
- ./fixtures:/fixtures:ro
ports:
- 8234:5432
environment:
POSTGRES_PASSWORD: x-admin