forked from GoogleCloudPlatform/database-assessment
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
56 lines (55 loc) · 1.43 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
50
51
52
53
54
55
56
version: "3"
services:
postgres15:
image: postgres:latest
ports:
- "5423:5432" # use a non-standard port here
environment:
POSTGRES_PASSWORD: super-secret
mysql8:
image: mysql:latest
ports:
- "3360:3306" # use a non-standard port here
environment:
MYSQL_ROOT_PASSWORD: super-secret
MYSQL_PASSWORD: super-secret
MYSQL_USER: app
MYSQL_DATABASE: db
MYSQL_ROOT_HOST: "%"
LANG: C.UTF-8
mysql5:
image: mysql:5.7
ports:
- "3361:3306" # use a non-standard port here
environment:
MYSQL_ROOT_PASSWORD: super-secret
MYSQL_PASSWORD: super-secret
MYSQL_USER: app
MYSQL_DATABASE: db
MYSQL_ROOT_HOST: "%"
LANG: C.UTF-8
oracle18c:
image: gvenzl/oracle-xe:18-slim-faststart
ports:
- "1512:1521" # use a non-standard port here
environment:
ORACLE_PASSWORD: super-secret
APP_USER_PASSWORD: super-secret
APP_USER: app
oracle23c:
image: gvenzl/oracle-free:23-slim-faststart
ports:
- "1513:1521" # use a non-standard port here
environment:
ORACLE_PASSWORD: super-secret
APP_USER_PASSWORD: super-secret
APP_USER: app
mssql:
image: mcr.microsoft.com/mssql/server:2022-latest
ports:
- "1344:1433" # use a non-standard port here
environment:
SA_PASSWORD: Super-secret1
MSSQL_PID: Developer
ACCEPT_EULA: Accepted
MSSQL_TCP_PORT: 1433