This website works better with JavaScript.
Home
Explore
帮助
返回水杉在线
登录水杉在线
登录水杉码园
10185101272
/
Personal-Collections-Website
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Releases
0
Wiki
Activity
Browse Source
fin-v0.1
master
wengsy
4 years ago
parent
c3d5f707a6
commit
2084147749
3 changed files
with
25 additions
and
0 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+19
-0
docker-compose.yml
+1
-0
mysql/Dockerfile
+5
-0
requirements.txt
+ 19
- 0
docker-compose.yml
View File
@ -0,0 +1,19 @@
version
:
'3'
services:
mysql:
image
:
mysql:5.7
build
:
./mysql
environment:
-
MYSQL_DATABASE=cp
-
MYSQL_ROOT_PASSWORD=cui,logic
ports:
-
"3306:3306"
command
:
--
character-set-server=utf8mb4 --collation-server=utf8mb4_unicode_ci
web:
build
:
./APP
ports:
-
"5000:5000"
links:
-
mysql:mysql
depends_on:
-
mysql
+ 1
- 0
mysql/Dockerfile
View File
@ -0,0 +1 @@
FROM
mysql:5.7
+ 5
- 0
requirements.txt
View File
@ -0,0 +1,5 @@
Flask==1.1.2
pymongo==3.11.0
SQLAlchemy==1.3.22
requests==2.20.0
beautifulsoup4==4.9.3
Write
Preview
Loading…
Cancel
Save