forked from ortus-boxlang/BoxLang
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
37 lines (34 loc) · 916 Bytes
/
Copy pathdocker-compose.yml
File metadata and controls
37 lines (34 loc) · 916 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
services:
mariadb:
image: mariadb:latest
environment:
MYSQL_ROOT_PASSWORD: ${MARIADB_PASSWORD}
MYSQL_DATABASE: ${MARIADB_DATABASE}
# volumes:
# - ./data:/var/lib/mysql
ports:
- "${MARIADB_PORT}:3306"
mysql:
platform: linux/x86_64 # Needed for Mac's on the M1 chip
image: mysql:5
environment:
MYSQL_DATABASE: ${MYSQL_DATABASE}
MYSQL_ROOT_PASSWORD: ${MYSQL_PASSWORD}
ports:
- "${MYSQL_PORT}:3306"
postgres:
image: postgres:11.3
environment:
POSTGRES_USER: ${POSTGRES_USERNAME}
POSTGRES_PASSWORD: ${POSTGRES_PASSWORD}
POSTGRES_DB: ${POSTGRES_DATABASE}
ports:
- "${POSTGRES_PORT}:5432"
mssql:
image: mcr.microsoft.com/mssql/server:2019-latest
environment:
MSSQL_SA_PASSWORD: ${MSSQL_PASSWORD}
ACCEPT_EULA: "Y"
MSSQL_PID: "Developer"
ports:
- "${MSSQL_PORT}:1433"