-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
47 lines (40 loc) · 799 Bytes
/
docker-compose.yml
File metadata and controls
47 lines (40 loc) · 799 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
39
40
41
42
43
44
45
46
version: '3'
services:
mssql:
container_name: mssql
image: mcr.microsoft.com/mssql/server
restart: on-failure
environment:
- ACCEPT_EULA='Y'
- SA_PASSWORD=YouBigLongSQLServerPassword!123
ports:
- 1435:1433
networks:
default:
aliases:
- mssql
pgsql:
container_name: pgsql
image: postgres
restart: always
environment:
- POSTGRES_PASSWORD=postgrespassword
ports:
- 5435:5432
networks:
default:
aliases:
- pgsql
nifi:
container_name: nifi
image: chandanghosh/nifibigdata
restart: on-failure
ports:
- 7889:8080
networks:
default:
aliases:
- nifi
depends_on:
- mssql
- pgsql