-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
84 lines (75 loc) · 1.51 KB
/
docker-compose.yml
File metadata and controls
84 lines (75 loc) · 1.51 KB
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
version: '3'
services:
rosetta-app:
image: adaptivescale/rosetta-ce
container_name: rosetta-app
environment:
- ACCEPT_EULA=Y
- PROEDMS_DB_URL=jdbc:postgresql://rosetta-db:5432/rosetta
- PROEDMS_DB_USER=postgres
- PROEDMS_DB_PASSWORD=123456
- OPENAI_API_KEY=openapikey
links:
- rosetta-db
- mysql
- postgres
- mssql
extra_hosts:
- "host.docker.internal:host-gateway"
networks:
- gateway
ports:
- '8080:8080'
depends_on:
- rosetta-db
rosetta-db:
image: postgres:12
container_name: rosetta-db
environment:
POSTGRES_PASSWORD: 123456
POSTGRES_DB: rosetta
networks:
- gateway
mysql:
image: restsql/mysql-sakila
ports:
- "3306:3306"
networks:
- gateway
postgres:
image: frantiseks/postgres-sakila
ports:
- "5432:5432"
environment:
- POSTGRES_PASSWORD=sakila
networks:
- gateway
mssql:
image: fabricioveronez/northwind-database
ports:
- "1433:1433"
environment:
- ACCEPT_EULA=Y
- SA_PASSWORD=123abcD!
networks:
- gateway
cdap:
image: caskdata/cdap-sandbox:6.7.2
ports:
- "11011:11011"
networks:
- gateway
cdap-marketplace:
image: adaptivescale/cdap-marketplace
ports:
- "5000:5000"
networks:
- gateway
jupyter:
image: jupyter/pyspark-notebook:latest
ports:
- "10000:8888"
networks:
- gateway
networks:
gateway: {}