-
Notifications
You must be signed in to change notification settings - Fork 1
/
data.py
86 lines (86 loc) · 2.02 KB
/
data.py
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
85
86
services = {
"mariadb": {
"name": "mariadb",
"image": "docker.io/mariadb",
"tag": "latest",
"env": {
"MYSQL_ROOT_PASSWORD": "root"
},
"ports": {
"source": "3306/tcp",
"destination": 3306
},
"volumes": {
"name": "mariadb-data",
"destination": "/var/lib/mysql"
},
"command": ""
},
"mongo": {
"name": "mongo",
"image": "docker.io/mongo",
"tag": "latest",
"env": {
"MONGO_INITDB_ROOT_USERNAME": "admin",
"MONGO_INITDB_ROOT_PASSWORD": "admin"
},
"ports": {
"source": "27017/tcp",
"destination": 27017
},
"volumes": {
"name": "mongo-data",
"destination": "/data/db"
},
"command": ""
},
"mysql": {
"name": "mysql",
"image": "docker.io/mysql",
"tag": "latest",
"env": {
"MYSQL_ROOT_PASSWORD": "root"
},
"ports": {
"source": "3306/tcp",
"destination": 3306
},
"volumes": {
"name": "mysql-data",
"destination": "/var/lib/mysql"
},
"command": ""
},
"postgres": {
"name": "postgres",
"image": "docker.io/postgres",
"tag": "latest",
"env": {
"POSTGRES_PASSWORD": "postgres"
},
"ports": {
"source": "5432/tcp",
"destination": 5432
},
"volumes": {
"name": "postgres-data",
"destination": "/var/lib/postgresql/data"
},
"command": ""
},
"redis": {
"name": "redis",
"image": "docker.io/redis",
"tag": "latest",
"env": {},
"ports": {
"source": "6379/tcp",
"destination": 6379
},
"volumes": {
"name": "redis-data",
"destination": "/data"
},
"command": ""
}
}