-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
49 lines (47 loc) · 1.24 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
version: "3.5"
services:
database-parser:
image: database-parser:latest
container_name: database-parser
environment:
INGESTION_URL: " http://ingestion:8080/api/ingestion/v1/ingestion/"
ports:
- "5000:5000"
postgres:
image: postgres:latest
container_name: postgres
hostname: postgres
environment:
- POSTGRES_PASSWORD=openk9
- POSTGRES_USER=openk9
- POSTGRES_DB=openk9
mysql:
image: mysql:5.7
container_name: mysql
hostname: mysql
environment:
MYSQL_ROOT_PASSWORD: root
MYSQL_DATABASE: test_db
adminer:
image: adminer
restart: always
ports:
- 5050:8080
mariadb:
image: mariadb
hostname: mariadb
container_name: mariadb
restart: always
ports:
- 3307:3306
environment:
MARIADB_ROOT_PASSWORD: example
microsoft:
image: mcr.microsoft.com/mssql/server:2022-latest
hostname: microsoft
container_name: microsoft
ports:
- 1433:1433
environment:
ACCEPT_EULA: "Y"
SA_PASSWORD: "196162Dc01_"