-
-
Notifications
You must be signed in to change notification settings - Fork 38
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
39 lines (38 loc) · 993 Bytes
/
docker-compose.yml
File metadata and controls
39 lines (38 loc) · 993 Bytes
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
version: '3'
services:
postgresql:
image: "postgres:15.3-alpine"
ports:
- "5432:5432"
environment:
POSTGRES_PASSWORD: postgres
POSTGRES_USER: postgres
POSTGRES_DB: marten_testing
NAMEDATALEN: 100
sqlserver:
image: "mcr.microsoft.com/azure-sql-edge"
ports:
- "1435:1433"
environment:
- "ACCEPT_EULA=Y"
- "SA_PASSWORD=P@55w0rd"
- "MSSQL_PID=Developer"
oracle:
image: "gvenzl/oracle-free:23-slim"
ports:
- "1521:1521"
environment:
- "ORACLE_PASSWORD=P@55w0rd"
- "APP_USER=weasel"
- "APP_USER_PASSWORD=P@55w0rd"
volumes:
- ./docker/oracle:/container-entrypoint-initdb.d
mysql:
image: "mysql:8.0"
ports:
- "3306:3306"
environment:
- "MYSQL_ROOT_PASSWORD=P@55w0rd"
- "MYSQL_DATABASE=weasel_testing"
- "MYSQL_USER=weasel"
- "MYSQL_PASSWORD=P@55w0rd"