-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
37 lines (33 loc) · 773 Bytes
/
docker-compose.yml
File metadata and controls
37 lines (33 loc) · 773 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
version: '3.2'
services:
sql2019-db:
container_name: ids4nh-sql2019
image: mcr.microsoft.com/mssql/server
environment:
SA_PASSWORD: "Passw0rd1!"
ACCEPT_EULA: "Y"
MSSQL_PID: "Express"
ports:
- "1433:1433"
postgresql-db:
container_name: ids4nh-postgresql
image: postgres:alpine
environment:
POSTGRES_PASSWORD: "Passw0rd1!"
ports:
- "5432:5432"
mysql-db:
container_name: ids4nh-mysql
image: mysql
cap_add:
- SYS_NICE
command: --default-authentication-plugin=mysql_native_password
environment:
MYSQL_ROOT_PASSWORD: "Passw0rd1!"
ports:
- "3306:3306"
adminer:
container_name: ids4nh-adminer
image: adminer
ports:
- "8080:8080"